Class LogMessageInfo
- java.lang.Object
-
- jetbrains.buildServer.serverSide.buildLog.LogMessageInfo
-
public class LogMessageInfo extends Object
Low level log message intended for read/write operations. For the higher level (model) analogue seeLogMessage.
-
-
Constructor Summary
Constructors Constructor Description LogMessageInfo(LogMessageKind kind, byte status, long timestamp, CharSequence message, String blockType, String renderHint, int flowId, long blockFinishTimestamp, String tags, Integer anchor)LogMessageInfo(LogMessageKind kind, byte status, long timestamp, CharSequence message, String blockType, String renderHint, int flowId, long blockFinishTimestamp, Collection<String> tags, Integer anchor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetAnchor()longgetBlockFinishTimestamp()StringgetBlockType()intgetEstimatedSizeBytes()intgetFlowId()LogMessageKindgetKind()CharSequencegetMessage()StringgetRenderHint()bytegetStatus()StringgetTags()Collection<String>getTagsList()longgetTimestamp()booleanisInternal()StringtoString()
-
-
-
Constructor Detail
-
LogMessageInfo
public LogMessageInfo(@NotNull LogMessageKind kind, byte status, long timestamp, @NotNull CharSequence message, @NotNull String blockType, @NotNull String renderHint, int flowId, long blockFinishTimestamp, @NotNull String tags, @Nullable Integer anchor)
-
LogMessageInfo
public LogMessageInfo(@NotNull LogMessageKind kind, byte status, long timestamp, @NotNull CharSequence message, @NotNull String blockType, @NotNull String renderHint, int flowId, long blockFinishTimestamp, @Nullable Collection<String> tags, @Nullable Integer anchor)
-
-
Method Detail
-
getKind
@NotNull public LogMessageKind getKind()
-
getStatus
public byte getStatus()
-
getTimestamp
public long getTimestamp()
-
getMessage
@NotNull public CharSequence getMessage()
-
getBlockType
@NotNull public String getBlockType()
-
getRenderHint
@NotNull public String getRenderHint()
-
getFlowId
public int getFlowId()
-
getBlockFinishTimestamp
public long getBlockFinishTimestamp()
-
getTags
@NotNull public String getTags()
-
getAnchor
@Nullable public Integer getAnchor()
-
getTagsList
@NotNull public Collection<String> getTagsList()
-
getEstimatedSizeBytes
public int getEstimatedSizeBytes()
-
isInternal
public boolean isInternal()
-
-