org.zodiac.sdk.nio.channeling.ChannelingBytesLoop Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zodiac-sdk-nio Show documentation
Show all versions of zodiac-sdk-nio Show documentation
Zodiac SDK NIO2(New Non-Blocking IO)
package org.zodiac.sdk.nio.channeling;
public interface ChannelingBytesLoop {
/**
*
* @param bytes bytes of chunked
* @param offset offset
* @param length length
* @return Is it done
*/
boolean consumer(byte[] bytes, int offset, int length);
}