blob: d02a8be4df616d20eb70f08d6ee3210f2acd6c55 [file] [log] [blame]
package com.datatorrent.contrib.rabbitmq;
/**
* Input adapter operator which consumes byte array data from the RabbitMQ and outputs byte array.
* <p></p>
*
* @displayName Rabbit MQ input operator
* @category Messaging
* @tags input operator, string
*
*/
public class RabbitMQInputOperator extends AbstractSinglePortRabbitMQInputOperator<byte[]>
{
@Override
public byte[] getTuple(byte[] message)
{
return message;
}
}