jnr.posix.MsgHdr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
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 - 2025 Weber Informatics LLC | Privacy Policy