com.sequoiadb.message.request.LobRuntimeDetailRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sequoiadb-driver Show documentation
Show all versions of sequoiadb-driver Show documentation
Java client driver for SequoiaDB
package com.sequoiadb.message.request;
import java.nio.ByteBuffer;
import com.sequoiadb.message.MsgOpCode;
public class LobRuntimeDetailRequest extends LobRequest {
public LobRuntimeDetailRequest(long contextID) {
opCode = MsgOpCode.LOB_GETRTDETAIL_REQ;
this.contextId = contextID;
}
@Override
protected void encodeLobBody(ByteBuffer out) {
// no lob body
}
}