mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-28 13:48:49 +08:00
11 lines
239 B
Go
11 lines
239 B
Go
![]() |
// Copyright (c) Mainflux
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package opcua
|
||
|
|
||
|
// Subscriber represents the OPC-UA Server client.
|
||
|
type Subscriber interface {
|
||
|
// Subscribes to given NodeID and receives events.
|
||
|
Subscribe(Config) error
|
||
|
}
|