Package org.apache.storm.jms
Interface JmsProvider
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
SpringJmsProvider
public interface JmsProvider extends Serializable
AJmsProvider
object encapsulates theConnectionFactory
andDestination
JMS objects theJmsSpout
needs to manage a topic/queue connection over the course of it's lifecycle.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.jms.ConnectionFactory
connectionFactory()
Provides the JMSConnectionFactory
.javax.jms.Destination
destination()
Provides theDestination
(topic or queue) from which theJmsSpout
will receive messages.
-