org.zodiac.sdk.nio.channeling.http.QueueWriteBuffer 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.http;
import java.nio.ByteBuffer;
import org.zodiac.sdk.nio.channeling.Then;
public class QueueWriteBuffer {
private ByteBuffer nb;
private Then $then;
public QueueWriteBuffer(ByteBuffer nb, Then $then) {
this.nb = nb;
this.$then = $then;
}
public ByteBuffer getNb() {
return nb;
}
public Then get$then() {
return $then;
}
}