ctrlX Data Layer .NET API  4.3.0
Loading...
Searching...
No Matches
IDatalayerSystem.cs
1using System;
2
3namespace Datalayer
4{
9 {
14 string IpcPath { get; }
15
20 bool IsStarted { get; }
21
34 void Start(bool startBroker);
35
40 void Stop();
41
48
54
60 string BfbsPath { set; }
61 }
62}
The IConverter interface.
Definition: IConverter.cs:9
The IDatalayerSystem interface.
string IpcPath
Gets the interprocess communication path.
void Stop()
Stops the DatalayerSystem.
string BfbsPath
Sets the binary Flatbuffer path, which contains *.bfbs files.
bool IsStarted
Checks if the DatalayerSystem is started.
IConverter Converter
Gets the Converter for Variant to JSON conversions.
void Start(bool startBroker)
Starts the DatalayerSystem.
IFactory Factory
Gets the Factory to create Clients and Providers.
The IFactory interface.
Definition: IFactory.cs:9
The INativeDisposable interface.