We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in iOS argument like this: this.queue = new Queue(this.connection, { name: 'test-' + DeviceInfo.getUniqueID(), passive: false, durable: false, exclusive: false, autoDelete: true, consumer_arguments: { 'x-priority': 1,'ackMode' : false, 'auto_delete': true, 'exclusive': false} }); not apply this configuration, only x-priority with -5456546 example.
this.queue = new Queue(this.connection, { name: 'test-' + DeviceInfo.getUniqueID(), passive: false, durable: false, exclusive: false, autoDelete: true, consumer_arguments: { 'x-priority': 1,'ackMode' : false, 'auto_delete': true, 'exclusive': false} });
The text was updated successfully, but these errors were encountered:
This code solves for my case Now if the consumer parameters are present NSDictionary *tmp_arguments = @{}; if ([config objectForKey:@"consumer_arguments"] != nil){ NSDictionary *consumer_arguments = [config objectForKey:@"consumer_arguments"]; tmp_arguments = @{@"x-priority": [[RMQSignedShort alloc] init:1], @"auto_delete": [[RMQBoolean alloc] init:YES], @"ackMode": [[RMQBoolean alloc] init:NO], @"exclusive": [[RMQBoolean alloc] init:NO]}; }
NSDictionary *tmp_arguments = @{}; if ([config objectForKey:@"consumer_arguments"] != nil){ NSDictionary *consumer_arguments = [config objectForKey:@"consumer_arguments"]; tmp_arguments = @{@"x-priority": [[RMQSignedShort alloc] init:1], @"auto_delete": [[RMQBoolean alloc] init:YES], @"ackMode": [[RMQBoolean alloc] init:NO], @"exclusive": [[RMQBoolean alloc] init:NO]}; }
Sorry, something went wrong.
No branches or pull requests
in iOS argument like this:
this.queue = new Queue(this.connection, { name: 'test-' + DeviceInfo.getUniqueID(), passive: false, durable: false, exclusive: false, autoDelete: true, consumer_arguments: { 'x-priority': 1,'ackMode' : false, 'auto_delete': true, 'exclusive': false} });
not apply this configuration, only x-priority with -5456546 example.
The text was updated successfully, but these errors were encountered: