* will trigger JChannel setState() call.
*/
public void fetchState(long timeout) throws ChannelClosedException, ChannelNotConnectedException
{
if (channel == null)
throw new ChannelNotConnectedException();
boolean rc = channel.getState(null, timeout);
if (log.isDebugEnabled())
{
if (rc)
log.debug("fetchState(): state was retrieved successfully");