jnr.posix.CmsgHdr 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 CmsgHdr {
void setLevel(int level);
int getLevel();
void setType(int type);
int getType();
void setData(ByteBuffer data);
ByteBuffer getData();
int getLen();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy