All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy