Package com.zeroc.Ice
Class LogMessage
java.lang.Object
com.zeroc.Ice.LogMessage
- All Implemented Interfaces:
Serializable
,Cloneable
A complete log message.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe log message itself.long
The date and time when theLogger
received this message, expressed as the number of microseconds since the Unix Epoch (00:00:00 UTC on 1 January 1970)For a message of type trace, the trace category of this log message; otherwise, the empty string.The type of message sent to theLogger
. -
Constructor Summary
ConstructorsConstructorDescriptionLogMessage
(LogMessageType type, long timestamp, String traceCategory, String message) -
Method Summary
Modifier and TypeMethodDescriptionclone()
boolean
int
hashCode()
static LogMessage
ice_read
(InputStream istr) static Optional<LogMessage>
ice_read
(InputStream istr, int tag) void
ice_readMembers
(InputStream istr) static void
ice_write
(OutputStream ostr, int tag, LogMessage v) static void
ice_write
(OutputStream ostr, int tag, Optional<LogMessage> v) static void
ice_write
(OutputStream ostr, LogMessage v) void
ice_writeMembers
(OutputStream ostr)
-
Field Details
-
type
The type of message sent to theLogger
. -
timestamp
public long timestampThe date and time when theLogger
received this message, expressed as the number of microseconds since the Unix Epoch (00:00:00 UTC on 1 January 1970) -
traceCategory
For a message of type trace, the trace category of this log message; otherwise, the empty string. -
message
The log message itself.
-
-
Constructor Details
-
LogMessage
public LogMessage() -
LogMessage
-
-
Method Details