Class OpcuaProtocolLimits
- java.lang.Object
-
- org.apache.plc4x.java.opcua.readwrite.OpcuaProtocolLimits
-
- All Implemented Interfaces:
Message,Serializable
public class OpcuaProtocolLimits extends Object implements Message
-
-
Field Summary
Fields Modifier and Type Field Description protected longmaxChunkCountprotected longmaxMessageSizeprotected longreceiveBufferSizeprotected longsendBufferSize
-
Constructor Summary
Constructors Constructor Description OpcuaProtocolLimits(long receiveBufferSize, long sendBufferSize, long maxMessageSize, long maxChunkCount)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)intgetLengthInBits()intgetLengthInBytes()longgetMaxChunkCount()longgetMaxMessageSize()longgetReceiveBufferSize()longgetSendBufferSize()inthashCode()voidserialize(WriteBuffer writeBuffer)static OpcuaProtocolLimitsstaticParse(ReadBuffer readBuffer)static OpcuaProtocolLimitsstaticParse(ReadBuffer readBuffer, Object... args)StringtoString()
-
-
-
Method Detail
-
getReceiveBufferSize
public long getReceiveBufferSize()
-
getSendBufferSize
public long getSendBufferSize()
-
getMaxMessageSize
public long getMaxMessageSize()
-
getMaxChunkCount
public long getMaxChunkCount()
-
serialize
public void serialize(WriteBuffer writeBuffer) throws SerializationException
- Specified by:
serializein interfaceSerializable- Throws:
SerializationException
-
getLengthInBytes
public int getLengthInBytes()
- Specified by:
getLengthInBytesin interfaceMessage
-
getLengthInBits
public int getLengthInBits()
- Specified by:
getLengthInBitsin interfaceMessage
-
staticParse
public static OpcuaProtocolLimits staticParse(ReadBuffer readBuffer, Object... args) throws ParseException
- Throws:
ParseException
-
staticParse
public static OpcuaProtocolLimits staticParse(ReadBuffer readBuffer) throws ParseException
- Throws:
ParseException
-
-