info.unterrainer.commons.opcuabrowser.parts.OpcUaSubscriptionGroup Maven / Gradle / Ivy
The newest version!
package info.unterrainer.commons.opcuabrowser.parts;
import lombok.Builder;
import lombok.Data;
import lombok.experimental.Accessors;
/**
* All subscriptions to specific values are handled in this single
* 'subscriptionGroup' which bundles all the values to-be-read in a single
* subscription-call. The correct value can be found by accessing the
* OpcUaMonitoredItem when the listener gets called.
*/
@Data
@Builder
@Accessors(fluent = true)
public class OpcUaSubscriptionGroup {
private SubscriptionData data;
private SubscriptionConfig config;
}