Uses of Class
org.hobbit.core.data.RabbitQueue
Packages that use RabbitQueue
-
Uses of RabbitQueue in org.hobbit.core.components
Fields in org.hobbit.core.components declared as RabbitQueueModifier and TypeFieldDescriptionprotected 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 RabbitQueueModifier and TypeFieldDescriptionprotected 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 RabbitQueueModifier and TypeMethodDescriptionRabbitQueueFactory.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.RabbitQueueFactory.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.RabbitQueueFactoryImpl.createDefaultRabbitQueue(String name) RabbitQueueFactoryImpl.createDefaultRabbitQueue(String name, com.rabbitmq.client.Channel channel) DataReceiver.getQueue()DataReceiverImpl.getQueue()Methods in org.hobbit.core.rabbit with parameters of type RabbitQueueModifier and TypeMethodDescriptionstatic SimpleFileReceiverSimpleFileReceiver.create(RabbitQueue queue) DataReceiverImpl.Builder.queue(RabbitQueue queue) Sets the queue that is used to receive data.DataSenderImpl.Builder.queue(RabbitQueue queue) Sets the queue that is used to receive data.Constructors in org.hobbit.core.rabbit with parameters of type RabbitQueueModifierConstructorDescriptionprotectedDataReceiverImpl(RabbitQueue queue, DataHandler handler, int maxParallelProcessedMsgs) protectedDataSenderImpl(RabbitQueue queue, int deliveryMode, int messageConfirmBuffer) protectedSimpleFileReceiver(RabbitQueue queue, QueueingConsumer consumer) protectedSimpleFileSender(RabbitQueue queue)