jnr.posix.MsgHdr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-driver Show documentation
Show all versions of cassandra-driver Show documentation
Shaded version of DataStax Java Driver for Apache Cassandra
package jnr.posix;
import java.nio.ByteBuffer;
/**
* @author Bob McWhirter
*/
public interface MsgHdr {
void setName(String name);
String getName();
void setIov(ByteBuffer[] buffers);
ByteBuffer[] getIov();
void setFlags(int flags);
int getFlags();
CmsgHdr allocateControl(int dataLength);
CmsgHdr[] allocateControls(int[] dataLengths);
CmsgHdr[] getControls();
int getControlLen();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy