Interface StompTransport
-
- All Known Implementing Classes:
AbstractStompSocket,StompSocket,StompTransportFilter
public interface StompTransportBasic interface that mediates between protocol converter and transport
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StompInactivityMonitorgetInactivityMonitor()StompWireFormatgetWireFormat()voidonException(IOException error)voidsendToActiveMQ(Command command)voidsendToStomp(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()
-
-