mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
231 B
Java
Generated
9 lines
231 B
Java
Generated
package com.rabbitmq.client;
|
|
|
|
import java.io.IOException;;
|
|
|
|
public interface Consumer {
|
|
void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body)
|
|
throws IOException;
|
|
}
|