This commit is contained in:
parent
c3150322c1
commit
19a0496712
|
|
@ -125,7 +125,7 @@ void Queue::get()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Queue::consume(QueueOptions options)
|
void Queue::consume(ConsumeOptions options)
|
||||||
{
|
{
|
||||||
d_func()->consume(options);
|
d_func()->consume(options);
|
||||||
}
|
}
|
||||||
|
|
@ -362,7 +362,7 @@ void QueuePrivate::unbind( const QString & exchangeName, const QString & key )
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void QueuePrivate::consume( Queue::QueueOptions options )
|
void QueuePrivate::consume( Queue::ConsumeOptions options )
|
||||||
{
|
{
|
||||||
if(!opened)
|
if(!opened)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -61,7 +61,7 @@ namespace QAMQP
|
||||||
void unbind(Exchange * exchange, const QString & key);
|
void unbind(Exchange * exchange, const QString & key);
|
||||||
|
|
||||||
void get();
|
void get();
|
||||||
void consume(ConsumeOptions options = NoOptions);
|
void consume(ConsumeOptions options = ConsumeOptions(NoOptions));
|
||||||
void setConsumerTag(const QString &consumerTag);
|
void setConsumerTag(const QString &consumerTag);
|
||||||
QString consumerTag() const;
|
QString consumerTag() const;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue