Interface StoppableConnection
-
- All Superinterfaces:
InternalProtocolInterface
public interface StoppableConnection extends InternalProtocolInterface
Allows a connection to be shutdown.DO NOT CHANGE THIS INTERFACE - it is part of the cross-version protocol.
Consumer compatibility: This interface is used by all consumer versions from 2.2-rc-1.
Provider compatibility: This interface is implemented by all provider versions from 2.2-rc-1.
- Since:
- 2.2-rc-1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
shutdown(ShutdownParameters parameters)
Shuts down this connection.
-
-
-
Method Detail
-
shutdown
void shutdown(ShutdownParameters parameters)
Shuts down this connection. Blocks until complete. The connection should not be used after calling this method.Consumer compatibility: This method is used by all consumer versions from 2.2-rc-1.
Provider compatibility: This method is implemented by all provider versions from 2.2-rc-1.
- Since:
- 2.2-rc-1
-
-