Uses of Class
org.hobbit.core.data.RabbitQueue
-
Packages that use RabbitQueue Package Description org.hobbit.core.components org.hobbit.core.rabbit -
-
Uses of RabbitQueue in org.hobbit.core.components
Fields in org.hobbit.core.components declared as RabbitQueue Modifier and Type Field Description protected RabbitQueueAbstractEvaluationModule. evalModule2EvalStoreQueueQueue to the evaluation storage.protected RabbitQueueAbstractEvaluationStorage. evalModule2EvalStoreQueueThe incoming queue from the evaluation module.protected RabbitQueueAbstractEvaluationModule. evalStore2EvalModuleQueueIncoming queue from the evaluation storage. -
Uses of RabbitQueue in org.hobbit.core.rabbit
Fields in org.hobbit.core.rabbit declared as RabbitQueue Modifier and Type Field Description protected RabbitQueueDataReceiverImpl.Builder. queueprotected RabbitQueueDataReceiverImpl. queueprotected RabbitQueueDataSenderImpl.Builder. queueprivate RabbitQueueDataSenderImpl. queueprotected RabbitQueueSimpleFileReceiver. queueprivate RabbitQueueSimpleFileSender. queueprivate RabbitQueueRabbitRpcClient. requestQueueQueue used for the request.private RabbitQueueRabbitRpcClient. responseQueueQueue used for the responses.Methods in org.hobbit.core.rabbit that return RabbitQueue Modifier and Type Method Description RabbitQueueRabbitQueueFactory. createDefaultRabbitQueue(String name)This method opens a channel using the established connection to RabbitMQ and creates a new queue using the given name and the following configuration: The channel number is automatically derived from the connection. The queue is not durable. The queue is not exclusive. The queue is configured to be deleted automatically. No additional queue configuration is defined.RabbitQueueRabbitQueueFactory. createDefaultRabbitQueue(String name, com.rabbitmq.client.Channel channel)This method uses the given channel and creates a new queue using the given name and the following configuration: The queue is not durable. The queue is not exclusive. The queue is configured to be deleted automatically. No additional queue configuration is defined.RabbitQueueRabbitQueueFactoryImpl. createDefaultRabbitQueue(String name)RabbitQueueRabbitQueueFactoryImpl. createDefaultRabbitQueue(String name, com.rabbitmq.client.Channel channel)RabbitQueueDataReceiver. getQueue()RabbitQueueDataReceiverImpl. getQueue()Methods in org.hobbit.core.rabbit with parameters of type RabbitQueue Modifier and Type Method Description static SimpleFileReceiverSimpleFileReceiver. create(RabbitQueue queue)DataReceiverImpl.BuilderDataReceiverImpl.Builder. queue(RabbitQueue queue)Sets the queue that is used to receive data.DataSenderImpl.BuilderDataSenderImpl.Builder. queue(RabbitQueue queue)Sets the queue that is used to receive data.Constructors in org.hobbit.core.rabbit with parameters of type RabbitQueue Constructor Description DataReceiverImpl(RabbitQueue queue, DataHandler handler, int maxParallelProcessedMsgs)DataSenderImpl(RabbitQueue queue, int deliveryMode, int messageConfirmBuffer)SimpleFileReceiver(RabbitQueue queue, com.rabbitmq.client.QueueingConsumer consumer)SimpleFileSender(RabbitQueue queue)
-