Interface ClientMethodProcessor<T extends ClientChannelMethodProcessor>
-
- All Superinterfaces:
MethodProcessor<T>
- All Known Implementing Classes:
FrameCreatingMethodProcessor
public interface ClientMethodProcessor<T extends ClientChannelMethodProcessor> extends MethodProcessor<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreceiveConnectionOpenOk(AMQShortString knownHosts)voidreceiveConnectionRedirect(AMQShortString host, AMQShortString knownHosts)voidreceiveConnectionSecure(byte[] challenge)voidreceiveConnectionStart(short versionMajor, short versionMinor, FieldTable serverProperties, byte[] mechanisms, byte[] locales)voidreceiveConnectionTune(int channelMax, long frameMax, int heartbeat)-
Methods inherited from interface org.apache.qpid.server.protocol.v0_8.transport.MethodProcessor
getChannelMethodProcessor, getProtocolVersion, ignoreAllButCloseOk, receiveConnectionClose, receiveConnectionCloseOk, receiveHeartbeat, receiveProtocolHeader, setCurrentMethod
-
-
-
-
Method Detail
-
receiveConnectionStart
void receiveConnectionStart(short versionMajor, short versionMinor, FieldTable serverProperties, byte[] mechanisms, byte[] locales)
-
receiveConnectionSecure
void receiveConnectionSecure(byte[] challenge)
-
receiveConnectionRedirect
void receiveConnectionRedirect(AMQShortString host, AMQShortString knownHosts)
-
receiveConnectionTune
void receiveConnectionTune(int channelMax, long frameMax, int heartbeat)
-
receiveConnectionOpenOk
void receiveConnectionOpenOk(AMQShortString knownHosts)
-
-