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

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

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

import lombok.ToString;

/**
 * Abstract channel transmit bytes.
 * 
 * @author mindwind
 * @version 1.0, Feb 22, 2013
 */
@ToString(callSuper = true, of = {})
abstract public class AbstractIoByteChannel extends AbstractIoChannel implements Channel {

	public AbstractIoByteChannel() {
		super();
	}
	
	public AbstractIoByteChannel(long id) {
		super(id);
	}
	
	public AbstractIoByteChannel(int minReadBufferSize) {
		super(minReadBufferSize);
	}
	
	public AbstractIoByteChannel(int minReadBufferSize, int defaultReadBufferSize) {
		super(minReadBufferSize, defaultReadBufferSize);
	}

	public AbstractIoByteChannel(int minReadBufferSize, int defaultReadBufferSize, int maxReadBufferSize) {
		super(minReadBufferSize, defaultReadBufferSize, maxReadBufferSize);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy