List of usage examples for com.rabbitmq.client Channel basicQos
void basicQos(int prefetchCount) throws IOException;
From source file:xyz.cloudbans.barker.amqp.AmqpBarkerTest.java
License:Apache License
private Channel openChannel() throws IOException { Channel channel = connection.createChannel(); channel.basicQos(1); return channel; }