com.github.ltsopensource.remoting.IdleState Maven / Gradle / Ivy
package com.github.ltsopensource.remoting;
/**
* @author Robert HG ([email protected]) on 11/3/15.
*/
public enum IdleState {
/**
* No data was received for a while.
*/
READER_IDLE,
/**
* No data was sent for a while.
*/
WRITER_IDLE,
/**
* No data was either received or sent for a while.
*/
ALL_IDLE
}