mirror of
https://github.com/evopro-ag/Sharp7Reactive.git
synced 2025-12-16 11:42:52 +00:00
Add non-generic GetValue and improve documentation
This commit is contained in:
@@ -8,8 +8,11 @@ namespace Sharp7.Rx.Interfaces;
|
||||
public interface IPlc : IDisposable
|
||||
{
|
||||
IObservable<TValue> CreateNotification<TValue>(string variableName, TransmissionMode transmissionMode);
|
||||
Task SetValue<TValue>(string variableName, TValue value);
|
||||
Task<TValue> GetValue<TValue>(string variableName);
|
||||
Task SetValue<TValue>(string variableName, TValue value, CancellationToken token = default);
|
||||
Task<TValue> GetValue<TValue>(string variableName, CancellationToken token = default);
|
||||
IObservable<ConnectionState> ConnectionState { get; }
|
||||
|
||||
Task<object> GetValue(string variableName, CancellationToken token = default);
|
||||
|
||||
ILogger Logger { get; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user