Package org.lwjgl.system.linux
Class EpollEvent
- java.lang.Object
-
- org.lwjgl.system.Pointer.Default
-
- org.lwjgl.system.Struct
-
- org.lwjgl.system.linux.EpollEvent
-
- All Implemented Interfaces:
java.lang.AutoCloseable,org.lwjgl.system.NativeResource,org.lwjgl.system.Pointer
public class EpollEvent extends org.lwjgl.system.Struct implements org.lwjgl.system.NativeResourceLayout
struct epoll_event { uint32_tevents();epoll_data_tdata(); }
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classEpollEvent.BufferAn array ofEpollEventstructs.
-
Constructor Summary
Constructors Constructor Description EpollEvent(java.nio.ByteBuffer container)Creates aEpollEventinstance at the current position of the specifiedByteBuffercontainer.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EpollEventcalloc()Returns a newEpollEventinstance allocated withmemCalloc.static EpollEvent.Buffercalloc(int capacity)Returns a newEpollEvent.Bufferinstance allocated withmemCalloc.static EpollEvent.Buffercalloc(int capacity, org.lwjgl.system.MemoryStack stack)Returns a newEpollEvent.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static EpollEventcalloc(org.lwjgl.system.MemoryStack stack)Returns a newEpollEventinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.static EpollEventcreate()Returns a newEpollEventinstance allocated withBufferUtils.static EpollEvent.Buffercreate(int capacity)Returns a newEpollEvent.Bufferinstance allocated withBufferUtils.static EpollEventcreate(long address)Returns a newEpollEventinstance for the specified memory address.static EpollEvent.Buffercreate(long address, int capacity)Create aEpollEvent.Bufferinstance at the specified memory.static EpollEventcreateSafe(long address)static EpollEvent.BuffercreateSafe(long address, int capacity)EpollDatadata()user data variableEpollEventdata(java.util.function.Consumer<EpollData> consumer)Passes thedata()field to the specifiedConsumer.EpollEventdata(EpollData value)intevents()epoll eventsEpollEventevents(int value)Sets the specified value to theevents()field.static EpollEventmalloc()Returns a newEpollEventinstance allocated withmemAlloc.static EpollEvent.Buffermalloc(int capacity)Returns a newEpollEvent.Bufferinstance allocated withmemAlloc.static EpollEvent.Buffermalloc(int capacity, org.lwjgl.system.MemoryStack stack)Returns a newEpollEvent.Bufferinstance allocated on the specifiedMemoryStack.static EpollEventmalloc(org.lwjgl.system.MemoryStack stack)Returns a newEpollEventinstance allocated on the specifiedMemoryStack.static EpollDatandata(long struct)Unsafe version ofdata().static voidndata(long struct, EpollData value)Unsafe version ofdata.static intnevents(long struct)Unsafe version ofevents().static voidnevents(long struct, int value)Unsafe version ofevents.EpollEventset(int events, EpollData data)Initializes this struct with the specified values.EpollEventset(EpollEvent src)Copies the specified struct data to this struct.intsizeof()
-
-
-
Constructor Detail
-
EpollEvent
public EpollEvent(java.nio.ByteBuffer container)
Creates aEpollEventinstance at the current position of the specifiedByteBuffercontainer. Changes to the buffer's content will be visible to the struct instance and vice versa.The created instance holds a strong reference to the container object.
-
-
Method Detail
-
sizeof
public int sizeof()
- Specified by:
sizeofin classorg.lwjgl.system.Struct
-
events
public int events()
epoll events
-
data
public EpollData data()
user data variable
-
events
public EpollEvent events(int value)
Sets the specified value to theevents()field.
-
data
public EpollEvent data(EpollData value)
-
data
public EpollEvent data(java.util.function.Consumer<EpollData> consumer)
Passes thedata()field to the specifiedConsumer.
-
set
public EpollEvent set(int events, EpollData data)
Initializes this struct with the specified values.
-
set
public EpollEvent set(EpollEvent src)
Copies the specified struct data to this struct.- Parameters:
src- the source struct- Returns:
- this struct
-
malloc
public static EpollEvent malloc()
Returns a newEpollEventinstance allocated withmemAlloc. The instance must be explicitly freed.
-
calloc
public static EpollEvent calloc()
Returns a newEpollEventinstance allocated withmemCalloc. The instance must be explicitly freed.
-
create
public static EpollEvent create()
Returns a newEpollEventinstance allocated withBufferUtils.
-
create
public static EpollEvent create(long address)
Returns a newEpollEventinstance for the specified memory address.
-
createSafe
@Nullable public static EpollEvent createSafe(long address)
-
malloc
public static EpollEvent.Buffer malloc(int capacity)
Returns a newEpollEvent.Bufferinstance allocated withmemAlloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
calloc
public static EpollEvent.Buffer calloc(int capacity)
Returns a newEpollEvent.Bufferinstance allocated withmemCalloc. The instance must be explicitly freed.- Parameters:
capacity- the buffer capacity
-
create
public static EpollEvent.Buffer create(int capacity)
Returns a newEpollEvent.Bufferinstance allocated withBufferUtils.- Parameters:
capacity- the buffer capacity
-
create
public static EpollEvent.Buffer create(long address, int capacity)
Create aEpollEvent.Bufferinstance at the specified memory.- Parameters:
address- the memory addresscapacity- the buffer capacity
-
createSafe
@Nullable public static EpollEvent.Buffer createSafe(long address, int capacity)
-
malloc
public static EpollEvent malloc(org.lwjgl.system.MemoryStack stack)
Returns a newEpollEventinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocate
-
calloc
public static EpollEvent calloc(org.lwjgl.system.MemoryStack stack)
Returns a newEpollEventinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocate
-
malloc
public static EpollEvent.Buffer malloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newEpollEvent.Bufferinstance allocated on the specifiedMemoryStack.- Parameters:
stack- the stack from which to allocatecapacity- the buffer capacity
-
calloc
public static EpollEvent.Buffer calloc(int capacity, org.lwjgl.system.MemoryStack stack)
Returns a newEpollEvent.Bufferinstance allocated on the specifiedMemoryStackand initializes all its bits to zero.- Parameters:
stack- the stack from which to allocatecapacity- the buffer capacity
-
nevents
public static int nevents(long struct)
Unsafe version ofevents().
-
nevents
public static void nevents(long struct, int value)Unsafe version ofevents.
-
-