Package org.apache.ignite.mxbean
Interface ClientProcessorMXBean
- 
 @Deprecated @MXBeanDescription("MBean that provides information about client connections.") public interface ClientProcessorMXBean Deprecated.Use managements API beans, instead.MXBean interface that provides access to ODBC\JDBC\Thin client connections.- See Also:
- CommandMBean
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voiddropAllConnections()Deprecated.Drop all active connections.booleandropConnection(long id)Deprecated.Drops client connection byid, if exists.List<String>getConnections()Deprecated.Returns list of active connections.voidshowFullStackOnClientSide(boolean show)Deprecated.If sets totrueshows full stack trace otherwise highlevel short error message.
 
- 
- 
- 
Method Detail- 
getConnections@MXBeanDescription("List of client connections.") List<String> getConnections() Deprecated.Returns list of active connections.- Returns:
- Sessions.
 
 - 
dropAllConnections@MXBeanDescription("Drop all client connections.") void dropAllConnections() Deprecated.Drop all active connections.
 - 
dropConnection@MXBeanDescription("Drop client connection by ID.") boolean dropConnection(@MXBeanParameter(name="id",description="Client connection ID.") long id) Deprecated.Drops client connection byid, if exists.- Parameters:
- id- connection id.
- Returns:
- Trueif connection has been dropped successfully,- falseotherwise.
 
 - 
showFullStackOnClientSide@MXBeanDescription("Show error full stack.") void showFullStackOnClientSide(@MXBeanParameter(name="show",description="Show error full stack.") boolean show) Deprecated.If sets totrueshows full stack trace otherwise highlevel short error message.- Parameters:
- show- Show flag.
 
 
- 
 
-