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

com.sequoiadb.message.request.LobRuntimeDetailRequest Maven / Gradle / Ivy

There is a newer version: 5.10
Show newest version
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
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy