Package com.gurock.smartinspect.packets
Class PacketType
- java.lang.Object
-
- com.gurock.smartinspect.Enum
-
- com.gurock.smartinspect.packets.PacketType
-
public final class PacketType extends Enum
Represents the type of packet. In the SmartInspect concept, there are multiple packet types each serving a special purpose. For a good starting point on packets, please have a look at the documentation of the Packet class.This class is fully threadsafe
-
-
Field Summary
Fields Modifier and Type Field Description static PacketTypeChunkIdentifies a packet as Chunk.static PacketTypeControlCommandIdentifies a packet as Control Command.static PacketTypeLogEntryIdentifies a packet as Log Entry.static PacketTypeLogHeaderIdentifies a packet as Log Header.static PacketTypeProcessFlowIdentifies a packet as Process Flow entry.static PacketTypeWatchIdentifies a packet as Watch.
-
-
-
Field Detail
-
LogEntry
public static final PacketType LogEntry
Identifies a packet as Log Entry. Please have a look at the documentation of the LogEntry class for information about this packet type.
-
ControlCommand
public static final PacketType ControlCommand
Identifies a packet as Control Command. Please have a look at the documentation of the ControlCommand class for more information about this packet type.
-
Watch
public static final PacketType Watch
Identifies a packet as Watch. Please have a look at the documentation of the Watch class for information about this packet type.
-
ProcessFlow
public static final PacketType ProcessFlow
Identifies a packet as Process Flow entry. Please have a look at the documentation of the ProcessFlow class for information about this packet type.
-
LogHeader
public static final PacketType LogHeader
Identifies a packet as Log Header. Please have a look at the documentation of the LogHeader class for information about this packet type.
-
Chunk
public static final PacketType Chunk
Identifies a packet as Chunk. Please have a look at the documentation of the LogHeader class for information about this packet type.
-
-