Methods Summary |
---|
public void | close()
if (sessionCloseListener != null) {
sessionCloseListener.notifySessionClose(this);
}
synchronized(this) {
if (isClosed) return;
isClosed = true;
}
try {
connection.close();
} catch (IOException ex) {
}
connection = null;
|
public abstract void | deregisterChannel(ChannelContext context)
|
public ChannelContext | findWSServiceContextByChannelId(int channelId)return null;
|
public ChannelContext | findWSServiceContextByURI(WSTCPURI wsTCPURI)return null;
|
public java.lang.Object | getAttribute(java.lang.String name)return null;
|
public abstract int | getChannelsAmount()
|
public com.sun.xml.ws.transport.tcp.io.Connection | getConnection()
return connection;
|
public ChannelContext | getServiceChannelContext()
return channelZeroContext;
|
protected void | init()
channelZeroContext = new ChannelZeroContext(this);
registerChannel(channelZeroContext);
|
public void | onReadCompleted()
|
public abstract void | registerChannel(ChannelContext context)
|
public void | setAttribute(java.lang.String name, java.lang.Object value)
|