Class Ace
The ACE library static class used for initialization and finalization.
Inheritance
System.Object
Ace
Namespace: OpenDDSharp
Assembly: OpenDDSharp.dll
Syntax
public static class Ace : object
Methods
| Improve this Doc View SourceFini()
Finalize the ACE library services and releases ACE's internal resources. In general, do not instantiate ACE classes or call methods on objects of these classes after a Ace.Fini() has been called.
Declaration
public static int Fini()
Returns
| Type | Description |
|---|---|
| System.Int32 | Returns 0 on success, -1 on failure, and 1 if it had already been called. |
Init()
This method initializes the ACE library services and initializes ACE's internal resources. Applications should not instantiate ACE classes or call methods on objects of these classes until a ACE.Init() returns successfully.
Declaration
public static int Init()
Returns
| Type | Description |
|---|---|
| System.Int32 | Returns 0 on success, -1 on failure, and 1 if it had already been called. |