org.mobicents.ss7.management.transceiver.ChannelSelectionKey Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.mobicents.ss7.management.transceiver;
import java.nio.channels.SelectionKey;
/**
*
* A token representing the registration of a {@link ShellSelectableChannel} with a {@link ChannelSelector}.
*
*
* A selection key is created each time a channel is registered with a selector. A key remains valid until it is
* cancelled by invoking its {@link #cancel cancel} method, by closing its channel, or by closing its selector.
*
*
* @author amit bhayani
*
*/
public class ChannelSelectionKey {
private ShellSelectableChannel shellSelectableChannel = null;
private SelectionKey key = null;
protected ChannelSelectionKey(ShellSelectableChannel shellSelectableChannel, SelectionKey k) {
this.shellSelectableChannel = shellSelectableChannel;
this.key = k;
}
/**
*
* Returns the channel for which this key was created. This method will continue to return the channel even after the key is
* canceled.
*
*
* @return This key's channel
*/
public ShellSelectableChannel channel() {
return shellSelectableChannel;
}
/**
* Tests whether this key's channel is ready to accept a new socket connection.
*
* @return
*/
public boolean isAcceptable() {
return key.isAcceptable();
}
/**
* Tests whether this key's channel is ready for reading.
*
* @return
*/
public boolean isReadable() {
return ((ShellChannel) shellSelectableChannel).isReadable();
}
/**
* Tests whether this key's channel is ready for writing.
*
* @return
*/
public boolean isWritable() {
return ((ShellChannel) shellSelectableChannel).isWritable();
}
/**
* Tests whether this key's channel is ready for writing.
*
* @return
*/
public boolean isValid() {
return key.isValid();
}
/**
*
* Requests that the registration of this key's channel with its selector be canceled. Upon return the key will be invalid
*
*
* If this key has already been canceled then invoking this method has no effect. Once canceled, a key remains forever
* invalid.
*
*/
public void cancel() {
key.cancel();
}
}