Package system.threading
Class SemaphoreSlim
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.threading.SemaphoreSlim
-
- All Implemented Interfaces:
AutoCloseable
,IJCOBridgeReflected
public class SemaphoreSlim extends NetObject implements AutoCloseable
The base .NET class managing System.Threading.SemaphoreSlim, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e.See: https://docs.microsoft.com/en-us/dotnet/api/System.Threading.SemaphoreSlim
-
-
Field Summary
Fields Modifier and Type Field Description static String
assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798estatic String
assemblyShortName
Assembly name: System.Private.CoreLibstatic String
className
Qualified class name: System.Threading.SemaphoreSlimstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description SemaphoreSlim()
SemaphoreSlim(int initialCount)
SemaphoreSlim(int initialCount, int maxCount)
SemaphoreSlim(Object instance)
Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SemaphoreSlim
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoSemaphoreSlim
, a cast assert is made to check if types are compatible.void
close()
void
Dispose()
WaitHandle
getAvailableWaitHandle()
int
getCurrentCount()
String
getJCOAssemblyName()
Returns the reflected Assembly nameString
getJCOClassName()
Returns the reflected Class nameObject
getJCOInstance()
Returns the instantiated classString
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typeint
Release()
int
Release(int releaseCount)
void
setJCOInstance(JCObject instance)
void
Wait()
boolean
Wait(int millisecondsTimeout)
boolean
Wait(int millisecondsTimeout, CancellationToken cancellationToken)
void
Wait(CancellationToken cancellationToken)
boolean
Wait(TimeSpan timeout)
boolean
Wait(TimeSpan timeout, CancellationToken cancellationToken)
Task
WaitAsync()
Task
WaitAsync(CancellationToken cancellationToken)
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toObjectFromArray, toObjectFromArray, toString, ToString, translateException
-
-
-
-
Field Detail
-
assemblyFullName
public static final String assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e- See Also:
- Constant Field Values
-
assemblyShortName
public static final String assemblyShortName
Assembly name: System.Private.CoreLib- See Also:
- Constant Field Values
-
className
public static final String className
Qualified class name: System.Threading.SemaphoreSlim- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SemaphoreSlim
public SemaphoreSlim(Object instance) throws Throwable
Internal constructor. Use with caution- Throws:
Throwable
-
SemaphoreSlim
public SemaphoreSlim(int initialCount, int maxCount) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException
-
SemaphoreSlim
public SemaphoreSlim(int initialCount) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
-
Method Detail
-
getJCOAssemblyName
public String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static SemaphoreSlim cast(IJCOBridgeReflected from) throws Throwable
Try to cast theIJCOBridgeReflected
instance intoSemaphoreSlim
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
SemaphoreSlim
instance- Throws:
Throwable
- in case of error during cast operation
-
Wait
public boolean Wait(int millisecondsTimeout, CancellationToken cancellationToken) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OperationCanceledException, EventSourceException, OutOfMemoryException, TaskSchedulerException, TaskCanceledException, AggregateException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
OperationCanceledException
EventSourceException
OutOfMemoryException
TaskSchedulerException
TaskCanceledException
AggregateException
-
Wait
public boolean Wait(int millisecondsTimeout) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, OperationCanceledException, TaskSchedulerException, EventSourceException, TaskCanceledException, AggregateException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
ObjectDisposedException
RankException
OperationCanceledException
TaskSchedulerException
EventSourceException
TaskCanceledException
AggregateException
-
Wait
public boolean Wait(TimeSpan timeout, CancellationToken cancellationToken) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException, OperationCanceledException, TaskSchedulerException, EventSourceException, TaskCanceledException, AggregateException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
RankException
CultureNotFoundException
ObjectDisposedException
OperationCanceledException
TaskSchedulerException
EventSourceException
TaskCanceledException
AggregateException
-
Wait
public boolean Wait(TimeSpan timeout) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, RankException, CultureNotFoundException, ObjectDisposedException, OperationCanceledException, TaskSchedulerException, EventSourceException, TaskCanceledException, AggregateException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
RankException
CultureNotFoundException
ObjectDisposedException
OperationCanceledException
TaskSchedulerException
EventSourceException
TaskCanceledException
AggregateException
-
Release
public int Release() throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, SemaphoreFullException
-
Release
public int Release(int releaseCount) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, SemaphoreFullException
-
WaitAsync
public Task WaitAsync() throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException
-
WaitAsync
public Task WaitAsync(CancellationToken cancellationToken) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException
-
Dispose
public void Dispose() throws Throwable, ObjectDisposedException, ArgumentNullException
-
Wait
public void Wait() throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, OperationCanceledException, TaskSchedulerException, EventSourceException, TaskCanceledException, AggregateException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
ObjectDisposedException
RankException
OperationCanceledException
TaskSchedulerException
EventSourceException
TaskCanceledException
AggregateException
-
Wait
public void Wait(CancellationToken cancellationToken) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, ObjectDisposedException, RankException, OperationCanceledException, TaskSchedulerException, EventSourceException, TaskCanceledException, AggregateException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
ObjectDisposedException
RankException
OperationCanceledException
TaskSchedulerException
EventSourceException
TaskCanceledException
AggregateException
-
close
public void close() throws Exception
- Specified by:
close
in interfaceAutoCloseable
- Throws:
Exception
-
getAvailableWaitHandle
public WaitHandle getAvailableWaitHandle() throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, WaitHandleCannotBeOpenedException
-
-