mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
24 lines
424 B
Java
Generated
24 lines
424 B
Java
Generated
package com.rabbitmq.client;
|
|
|
|
public class QueueingConsumer extends DefaultConsumer {
|
|
|
|
public QueueingConsumer(Channel channel) {
|
|
super(channel);
|
|
}
|
|
|
|
public Delivery nextDelivery() {
|
|
return null;
|
|
}
|
|
|
|
public Delivery nextDelivery(long timeout) {
|
|
return null;
|
|
}
|
|
|
|
public static class Delivery {
|
|
|
|
public byte[] getBody() {
|
|
return null;
|
|
}
|
|
}
|
|
}
|