Uses of Record Class
club.doki7.sdl3.handle.SDL_Condition
Packages that use SDL_Condition
-
Uses of SDL_Condition in club.doki7.sdl3
Methods in club.doki7.sdl3 that return SDL_ConditionMethods in club.doki7.sdl3 with parameters of type SDL_ConditionModifier and TypeMethodDescriptionvoid
SDL3.broadcastCondition
(@Nullable SDL_Condition cond) Restart all threads that are waiting on the condition variable.void
SDL3.destroyCondition
(@Nullable SDL_Condition cond) Destroy a condition variable.void
SDL3.signalCondition
(@Nullable SDL_Condition cond) Restart one of the threads that are waiting on the condition variable.void
SDL3.waitCondition
(@Nullable SDL_Condition cond, @Nullable SDL_Mutex mutex) Wait until a condition variable is signaled.boolean
SDL3.waitConditionTimeout
(@Nullable SDL_Condition cond, @Nullable SDL_Mutex mutex, int timeoutMS) Wait until a condition variable is signaled or a certain time has passed. -
Uses of SDL_Condition in club.doki7.sdl3.handle
Classes in club.doki7.sdl3.handle that implement interfaces with type arguments of type SDL_ConditionModifier and TypeClassDescriptionstatic final record
Represents a pointer toSDL_Condition
handle(s) in native memory.Methods in club.doki7.sdl3.handle that return SDL_ConditionModifier and TypeMethodDescription@Nullable SDL_Condition
SDL_Condition.Ptr.read()
@Nullable SDL_Condition
SDL_Condition.Ptr.read
(long index) Methods in club.doki7.sdl3.handle that return types with arguments of type SDL_ConditionMethods in club.doki7.sdl3.handle with parameters of type SDL_ConditionModifier and TypeMethodDescriptionstatic SDL_Condition.Ptr
SDL_Condition.Ptr.allocate
(Arena arena, @Nullable SDL_Condition[] values) static SDL_Condition.Ptr
SDL_Condition.Ptr.allocateV
(Arena arena, @Nullable SDL_Condition value0, @Nullable SDL_Condition... values) void
SDL_Condition.Ptr.write
(long index, @Nullable SDL_Condition value) void
SDL_Condition.Ptr.write
(@Nullable SDL_Condition value) void
SDL_Condition.Ptr.write
(@Nullable SDL_Condition[] values) void
SDL_Condition.Ptr.writeV
(@Nullable SDL_Condition value0, @Nullable SDL_Condition... values)