Package org.epics.ca.impl
Class Header
- java.lang.Object
-
- org.epics.ca.impl.Header
-
public class Header extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description shortcommandCommand field of the header.intdataCountData count field of the header.shortdataTypeData type field of the header.intparameter1Parameter 1 field of the header.intparameter2Parameter 2 field of the header.intpayloadSizePayload size field of the header.
-
Constructor Summary
Constructors Constructor Description Header()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanread(java.nio.ByteBuffer headerBuffer)Parse CA response header.
-
-
-
Field Detail
-
command
public short command
Command field of the header.
-
payloadSize
public int payloadSize
Payload size field of the header.
-
dataType
public short dataType
Data type field of the header.
-
dataCount
public int dataCount
Data count field of the header. NOTE: extended (unsigned short -> int)
-
parameter1
public int parameter1
Parameter 1 field of the header.
-
parameter2
public int parameter2
Parameter 2 field of the header.
-
-