Interface StompTransport
-
- All Known Implementing Classes:
AbstractStompSocket
,StompSocket
,StompTransportFilter
public interface StompTransport
Basic interface that mediates between protocol converter and transport
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StompInactivityMonitor
getInactivityMonitor()
StompWireFormat
getWireFormat()
void
onException(IOException error)
void
sendToActiveMQ(Command command)
void
sendToStomp(StompFrame command)
-
-
-
Method Detail
-
sendToActiveMQ
void sendToActiveMQ(Command command)
-
sendToStomp
void sendToStomp(StompFrame command) throws IOException
- Throws:
IOException
-
onException
void onException(IOException error)
-
getInactivityMonitor
StompInactivityMonitor getInactivityMonitor()
-
getWireFormat
StompWireFormat getWireFormat()
-
-