Package com.prineside.luaj.mapping.parts
Class LJ_GDX_ai.NonBlockingSemaphore_FF.LIP
java.lang.Object
com.prineside.luaj.mapping.InterfaceProxy
com.prineside.luaj.mapping.parts.LJ_GDX_ai.NonBlockingSemaphore_FF.LIP
- All Implemented Interfaces:
com.badlogic.gdx.ai.utils.NonBlockingSemaphore,com.esotericsoftware.kryo.KryoSerializable
- Enclosing class:
- LJ_GDX_ai.NonBlockingSemaphore_FF
public static class LJ_GDX_ai.NonBlockingSemaphore_FF.LIP
extends InterfaceProxy
implements com.badlogic.gdx.ai.utils.NonBlockingSemaphore
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.badlogic.gdx.ai.utils.NonBlockingSemaphore
com.badlogic.gdx.ai.utils.NonBlockingSemaphore.Factory -
Field Summary
Fields inherited from class com.prineside.luaj.mapping.InterfaceProxy
luaObj -
Method Summary
Modifier and TypeMethodDescriptionbooleanacquire()Acquires a resource if available.booleanacquire(int p1) Acquires the specified number of resources if they all are available.booleanrelease()Releases a resource returning it to this semaphore.booleanrelease(int p1) Releases the specified number of resources returning it to this semaphore.Methods inherited from class com.prineside.luaj.mapping.InterfaceProxy
getLuaObj, read, write
-
Method Details
-
acquire
public boolean acquire()Description copied from interface:com.badlogic.gdx.ai.utils.NonBlockingSemaphoreAcquires a resource if available.An invocation of this method yields exactly the same result as
acquire(1)- Specified by:
acquirein interfacecom.badlogic.gdx.ai.utils.NonBlockingSemaphore- Returns:
trueif the resource has been acquired;falseotherwise.
-
acquire
public boolean acquire(int p1) Description copied from interface:com.badlogic.gdx.ai.utils.NonBlockingSemaphoreAcquires the specified number of resources if they all are available.- Specified by:
acquirein interfacecom.badlogic.gdx.ai.utils.NonBlockingSemaphore- Returns:
trueif all the requested resources have been acquired;falseotherwise.
-
release
public boolean release()Description copied from interface:com.badlogic.gdx.ai.utils.NonBlockingSemaphoreReleases a resource returning it to this semaphore.An invocation of this method yields exactly the same result as
release(1)- Specified by:
releasein interfacecom.badlogic.gdx.ai.utils.NonBlockingSemaphore- Returns:
trueif the resource has been released;falseotherwise.
-
release
public boolean release(int p1) Description copied from interface:com.badlogic.gdx.ai.utils.NonBlockingSemaphoreReleases the specified number of resources returning it to this semaphore.- Specified by:
releasein interfacecom.badlogic.gdx.ai.utils.NonBlockingSemaphore- Returns:
trueif all the requested resources have been released;falseotherwise.
-