All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.craft.atom.io.ChannelState Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.craft.atom.io;

/**
 * The state of a {@link Channel}.
 * 
 * @author mindwind
 * @version 1.0, Feb 21, 2013
 */
public enum ChannelState {
	
	/** Channel in OPEN state once a channel is created.  */
	OPEN,
	
	/** Channel in CLOSING state for async close operation, means in closing process. */
	CLOSING,
	
	/** Channel in ClOSED state, means channel can not be used. */
	CLOSED,
	
	/** Channel in PAUSED state, means pause accept new data transmit request, but data already in the buffer of channel can be transmitted. */
	PAUSED
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy