Interface PlcConnectionMetadata
-
public interface PlcConnectionMetadata
Information about connection capabilities. This includes connection and driver specific metadata.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isBrowseSupported()
Indicates that the connection supports browsing.boolean
isReadSupported()
Indicates that the connection supports reading.boolean
isSubscribeSupported()
Indicates that the connection supports subscription.boolean
isWriteSupported()
Indicates that the connection supports writing.
-
-
-
Method Detail
-
isReadSupported
boolean isReadSupported()
Indicates that the connection supports reading.
-
isWriteSupported
boolean isWriteSupported()
Indicates that the connection supports writing.
-
isSubscribeSupported
boolean isSubscribeSupported()
Indicates that the connection supports subscription.
-
isBrowseSupported
boolean isBrowseSupported()
Indicates that the connection supports browsing.
-
-