Package io.mats3.serial.impl
Class MatsTraceFieldImpl<Z>
- java.lang.Object
-
- io.mats3.serial.impl.MatsTraceFieldImpl<Z>
-
- All Implemented Interfaces:
MatsTrace<Z>,java.lang.Cloneable
public class MatsTraceFieldImpl<Z> extends java.lang.Object implements MatsTrace<Z>, java.lang.Cloneable
An implementation ofMatsTracewhich uses fields to hold all state necessary for a Mats flow, including "holders" for the serialization of DTOs and STOs, with type 'Z'. It is meant to be "field-serialized", thus the field names are short. The most relevant types of Z are String and byte[], using e.g. JSON or Smile for serializing the DTOs and STOs payloads, but it might be relevant to use a container/holder type too. You should create an extension of this class to set the type. In 'mats-serial-json', aMatsTraceStringImplvariant exists.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMatsTraceFieldImpl.CallImpl<Z>Represents an entry in theMatsTrace.-
Nested classes/interfaces inherited from interface io.mats3.serial.MatsTrace
MatsTrace.Call<Z>, MatsTrace.KeepMatsTrace, MatsTrace.StackState<Z>
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedMatsTraceFieldImpl()protectedMatsTraceFieldImpl(java.lang.String traceId, java.lang.String flowId, MatsTrace.KeepMatsTrace keepMatsTrace, boolean nonPersistent, boolean interactive, long ttlMillis, boolean noAudit)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MatsTrace<Z>addGotoCall(java.lang.String from, java.lang.String to, Z data, Z initialState)MatsTraceFieldImpl<Z>addNextCall(java.lang.String from, java.lang.String to, Z data, Z state)Adds aNEXTCall, which is a "skip call" to the next stage in a multistage service, as opposed to the normal request out to a service expecting a reply.MatsTraceFieldImpl<Z>addReplyCall(java.lang.String from, Z data)Adds aREPLYCall, which happens when a requested service is finished with its processing and have some Reply to return.MatsTraceFieldImpl<Z>addRequestCall(java.lang.String from, java.lang.String to, MatsTrace.Call.MessagingModel toMessagingModel, java.lang.String replyTo, MatsTrace.Call.MessagingModel replyToMessagingModel, Z data, Z replyState, Z initialState)Adds aREQUESTCall, which is an invocation of a service where one expects a Reply from this service to go to a specified endpoint, typically the next stage in a multi-stage endpoint: Envision a normal invocation of some method that returns a value.MatsTraceFieldImpl<Z>addSendCall(java.lang.String from, java.lang.String to, MatsTrace.Call.MessagingModel toMessagingModel, Z data, Z initialState)Adds aSENDCall, meaning a "request" which do not expect a Reply: Envision an invocation of a void-method.protected MatsTraceFieldImpl<Z>cloneForNewCall()Takes into account the KeepMatsTrace value.java.util.List<MatsTrace.Call<Z>>getCallFlow()intgetCallNumber()MatsTraceFieldImpl.CallImpl<Z>getCurrentCall()longgetCurrentSpanId()java.util.Optional<MatsTrace.StackState<Z>>getCurrentState()Returns theMatsTrace.StackStatefor theMatsTrace.getCurrentCall(), if present.java.lang.StringgetDebugInfo()java.lang.StringgetFlowId()longgetInitializedTimestamp()java.lang.StringgetInitializingAppName()java.lang.StringgetInitializingAppVersion()java.lang.StringgetInitializingHost()java.lang.StringgetInitiatorId()MatsTrace.KeepMatsTracegetKeepTrace()java.lang.StringgetParentMatsMessageId()If this is achild flowof an existing flow, this should return the MatsMessageId of the message whose processing spawned this new flow.longgetSameHeightEndpointEnteredTimestamp()longgetSameHeightOutgoingTimestamp()java.util.List<MatsTrace.StackState<Z>>getStateFlow()java.util.List<MatsTrace.StackState<Z>>getStateStack()java.util.List<io.mats3.serial.impl.MatsTraceFieldImpl.StackStateImpl<Z>>getStateStack_internal()longgetTimeToLive()intgetTotalCallNumber()"Stack overflow protection" mechanism.java.lang.StringgetTraceId()ZgetTraceProperty(java.lang.String propertyName)Retrieves a property value set byMatsTrace.setTraceProperty(String, Object), refer toProcessContext.getTraceProperty(String, Class).java.util.Set<java.lang.String>getTracePropertyKeys()booleanisInteractive()booleanisNoAudit()booleanisNonPersistent()voidoverrideInitializationTimestamp(long timestamp)NOTICE! This is NOT meant for public usage!voidsetOutgoingTimestamp(long timestamp)Shall be invoked after adding the outgoing call, immediately before serializing the outgoing MatsTrace.voidsetStageEnteredTimestamp(long timestamp)Invoke this as early as possible on the reception of a message.voidsetTraceProperty(java.lang.String propertyName, Z propertyValue)Sets a trace property, refer toProcessContext.setTraceProperty(String, Object).java.lang.StringtoString()MatsTraceStringImpl.toString().MatsTrace<Z>withChildFlow(java.lang.String parentMatsMessageId, int totalCallNumber)If this newly created MatsTrace is a child-flow (initiated within a Stage) of an existing flow, then this method should be invoked to set the parent MatsMessageId, and the "total call number" which is a "Call Overflow protection" mechanism.MatsTrace<Z>withDebugInfo(java.lang.String initializingAppName, java.lang.String initializingAppVersion, java.lang.String initializingHost, java.lang.String initiatorId, java.lang.String debugInfo)Can only be set once..
-
-
-
Constructor Detail
-
MatsTraceFieldImpl
protected MatsTraceFieldImpl()
-
MatsTraceFieldImpl
protected MatsTraceFieldImpl(java.lang.String traceId, java.lang.String flowId, MatsTrace.KeepMatsTrace keepMatsTrace, boolean nonPersistent, boolean interactive, long ttlMillis, boolean noAudit)
-
-
Method Detail
-
withDebugInfo
public MatsTrace<Z> withDebugInfo(java.lang.String initializingAppName, java.lang.String initializingAppVersion, java.lang.String initializingHost, java.lang.String initiatorId, java.lang.String debugInfo)
Description copied from interface:MatsTraceCan only be set once..- Specified by:
withDebugInfoin interfaceMatsTrace<Z>initiatorId- the id set usingmatsInitiate.from(initiatorId)- it is not the name of the initiator.- Returns:
this, for chaining. Note that this is opposed to the add[Request|Send|Next|Reply]Call(..) methods, which return a new, independent instance.
-
withChildFlow
public MatsTrace<Z> withChildFlow(java.lang.String parentMatsMessageId, int totalCallNumber)
Description copied from interface:MatsTraceIf this newly created MatsTrace is a child-flow (initiated within a Stage) of an existing flow, then this method should be invoked to set the parent MatsMessageId, and the "total call number" which is a "Call Overflow protection" mechanism. Parent Mats Message Id: The MatsMessageId of the message whose processing spawned this new flow. Total Call Number: Initializes theMatsTrace.getTotalCallNumber(). If this message is initiated within an existing call flow, set to the current call'sMatsTrace.getTotalCallNumber()+ 1. This number will increase for every subsequent call this flow is going through, just as withMatsTrace.getCallNumber()- the difference being that it should continue increasing if a new message is initiated within a flow. Thereby it is possible to stop an out-of-control initiate-send/request recursion, by checking that theMatsTrace.getTotalCallNumber()doesn't ever go above a fixed number, e.g. 100.- Specified by:
withChildFlowin interfaceMatsTrace<Z>- Parameters:
parentMatsMessageId- the MatsMessageId of the message whose processing spawned this new flow.totalCallNumber- theMatsTrace.getTotalCallNumber()to initialize this MatsTrace with.- Returns:
this, for chaining. Note that this is opposed to the add[Request|Send|Next|Reply]Call(..) methods, which return a new, independent instance.
-
overrideInitializationTimestamp
public void overrideInitializationTimestamp(long timestamp)
NOTICE! This is NOT meant for public usage!
-
getTraceId
public java.lang.String getTraceId()
- Specified by:
getTraceIdin interfaceMatsTrace<Z>- Returns:
- the TraceId that this
MatsTracewas initiated with - this is set once, at initiation time, and follows the processing till it terminates. (All log lines will have the traceId set on the MDC.)
-
getFlowId
public java.lang.String getFlowId()
- Specified by:
getFlowIdin interfaceMatsTrace<Z>- Returns:
- the "FlowId", which is a system-specified, guaranteed-globally-unique TraceId - and shall be the prefix
of each
MatsTrace.Call.getMatsMessageId(), separated by a "_".
-
getInitializedTimestamp
public long getInitializedTimestamp()
- Specified by:
getInitializedTimestampin interfaceMatsTrace<Z>
-
getKeepTrace
public MatsTrace.KeepMatsTrace getKeepTrace()
- Specified by:
getKeepTracein interfaceMatsTrace<Z>- Returns:
- to which extent the Call history (with State) should be kept. The default is
MatsTrace.KeepMatsTrace.COMPACT.
-
isNonPersistent
public boolean isNonPersistent()
- Specified by:
isNonPersistentin interfaceMatsTrace<Z>- Returns:
- whether the message should be JMS-style "non-persistent", default is
false(i.e. persistent, reliable).
-
isInteractive
public boolean isInteractive()
- Specified by:
isInteractivein interfaceMatsTrace<Z>- Returns:
- whether the message should be prioritized in that a human is actively waiting for the reply, default is
false.
-
getTimeToLive
public long getTimeToLive()
- Specified by:
getTimeToLivein interfaceMatsTrace<Z>- Returns:
- the number of milliseconds the message should live before being time out. 0 means "forever", and is the default.
-
isNoAudit
public boolean isNoAudit()
- Specified by:
isNoAuditin interfaceMatsTrace<Z>- Returns:
- a hint to the underlying implementation, or to any monitoring/auditing tooling on the Message Broker, that it does not make much value in auditing this message flow, typically because it is just a "getter" of information to show to some user, or a health-check validating that some service is up and answers in a timely fashion.
-
getInitializingAppName
public java.lang.String getInitializingAppName()
- Specified by:
getInitializingAppNamein interfaceMatsTrace<Z>
-
getInitializingAppVersion
public java.lang.String getInitializingAppVersion()
- Specified by:
getInitializingAppVersionin interfaceMatsTrace<Z>
-
getInitializingHost
public java.lang.String getInitializingHost()
- Specified by:
getInitializingHostin interfaceMatsTrace<Z>
-
getInitiatorId
public java.lang.String getInitiatorId()
- Specified by:
getInitiatorIdin interfaceMatsTrace<Z>- Returns:
- a fictive "endpointId" of the initiator, see
MatsInitiator.MatsInitiate.from(String).
-
getDebugInfo
public java.lang.String getDebugInfo()
- Specified by:
getDebugInfoin interfaceMatsTrace<Z>
-
getCallNumber
public int getCallNumber()
- Specified by:
getCallNumberin interfaceMatsTrace<Z>- Returns:
- the number of calls that this MatsTrace have been through, i.e. how many times
MatsTrace.add[Request|Next|Reply..](..)has been invoked on this MatsTrace. This means that right after a new MatsTrace has been created, before a call has been added, 0 is returned. With KeepMatsTrace atFULLorCOMPACT, the returned number will be the same asMatsTrace.getCallFlow().size(), but withMINIMAL, that number of always 1, but this number will still return the number of calls that has been added through the flow. - See Also:
MatsTrace.getTotalCallNumber()
-
getTotalCallNumber
public int getTotalCallNumber()
Description copied from interface:MatsTrace"Stack overflow protection" mechanism.- Specified by:
getTotalCallNumberin interfaceMatsTrace<Z>- Returns:
- the total call number, which is the same as
MatsTrace.getCallNumber()unless this flow was initiated within a stage, in which case the totalCallNumber starts at the current call number at that stage (as set withMatsTrace.withChildFlow(String, int)). This ensures that if we end up with e.g. a mats flow initiating a new mats flow to itself, thus creating a loop, this number will continuously increase, and we can thus break out at some obviously-too-large value.
-
getParentMatsMessageId
public java.lang.String getParentMatsMessageId()
Description copied from interface:MatsTraceIf this is achild flowof an existing flow, this should return the MatsMessageId of the message whose processing spawned this new flow.- Specified by:
getParentMatsMessageIdin interfaceMatsTrace<Z>- Returns:
- the MatsMessageId of the message whose processing spawned this new flow.
-
setTraceProperty
public void setTraceProperty(java.lang.String propertyName, Z propertyValue)Description copied from interface:MatsTraceSets a trace property, refer toProcessContext.setTraceProperty(String, Object). Notice that on the MatsTrace-side, the value must be of typeZ.- Specified by:
setTracePropertyin interfaceMatsTrace<Z>- Parameters:
propertyName- the name of the property.propertyValue- the value of the property.- See Also:
MatsTrace.getTracePropertyKeys(),MatsTrace.getTraceProperty(String)
-
getTraceProperty
public Z getTraceProperty(java.lang.String propertyName)
Description copied from interface:MatsTraceRetrieves a property value set byMatsTrace.setTraceProperty(String, Object), refer toProcessContext.getTraceProperty(String, Class). Notice that on the MatsTrace-side, the value is of typeZ.- Specified by:
getTracePropertyin interfaceMatsTrace<Z>- Parameters:
propertyName- the name of the property to retrieve.- Returns:
- the value of the property.
- See Also:
MatsTrace.setTraceProperty(String, Object),MatsTrace.getTracePropertyKeys()
-
getTracePropertyKeys
public java.util.Set<java.lang.String> getTracePropertyKeys()
- Specified by:
getTracePropertyKeysin interfaceMatsTrace<Z>- Returns:
- the set of keys containing
trace properties. - See Also:
MatsTrace.getTraceProperty(String),MatsTrace.setTraceProperty(String, Object)
-
addRequestCall
public MatsTraceFieldImpl<Z> addRequestCall(java.lang.String from, java.lang.String to, MatsTrace.Call.MessagingModel toMessagingModel, java.lang.String replyTo, MatsTrace.Call.MessagingModel replyToMessagingModel, Z data, Z replyState, Z initialState)
Description copied from interface:MatsTraceAdds aREQUESTCall, which is an invocation of a service where one expects a Reply from this service to go to a specified endpoint, typically the next stage in a multi-stage endpoint: Envision a normal invocation of some method that returns a value.- Specified by:
addRequestCallin interfaceMatsTrace<Z>- Parameters:
from- which stageId this request is for. This is solely meant for monitoring and debugging - the protocol does not need the from specifier, as this is not where any replies go to.to- which endpoint that should get the request.toMessagingModel- theMatsTrace.Call.MessagingModelof 'to'.replyTo- which endpoint that should get the reply from the requested endpoint.replyToMessagingModel- theMatsTrace.Call.MessagingModelof 'replyTo'.data- the request data, most often a JSON representing the Request Data Transfer Object that the requested service expects to get.replyState- the state data for the stageId that gets the reply to this request, that is, the state for the stageId that is at the first element of the replyStack. Most often a JSON representing the State Transfer Object for the multi-stage endpoint.initialState- an optional feature, whereby the state can be set for the initial stage of the requested endpoint. Same stuff as replyState.
-
addSendCall
public MatsTraceFieldImpl<Z> addSendCall(java.lang.String from, java.lang.String to, MatsTrace.Call.MessagingModel toMessagingModel, Z data, Z initialState)
Description copied from interface:MatsTraceAdds aSENDCall, meaning a "request" which do not expect a Reply: Envision an invocation of a void-method. Or an invocation of some method that returns the value, but where you invoke it as a void-method (i.e. not storing the result, e.g. the methodmap.remove("test")returns the removed value, but is often invoked without storing this.).- Specified by:
addSendCallin interfaceMatsTrace<Z>- Parameters:
from- which stageId this request is for. This is solely meant for monitoring and debugging - the protocol does not need the from specifier, as this is not where any replies go to.to- which endpoint that should get the message.toMessagingModel- theMatsTrace.Call.MessagingModelof 'to'.data- the request data, most often a JSON representing the Request Data Transfer Object that the receiving service expects to get.initialState- an optional feature, whereby the state can be set for the initial stage of the requested endpoint.
-
addNextCall
public MatsTraceFieldImpl<Z> addNextCall(java.lang.String from, java.lang.String to, Z data, Z state)
Description copied from interface:MatsTraceAdds aNEXTCall, which is a "skip call" to the next stage in a multistage service, as opposed to the normal request out to a service expecting a reply. The functionality is functionally identical toMatsTrace.addSendCall(String, String, MessagingModel, Object, Object)addSendCall(...)}, but has its ownCallTypeenum valueNEXT. Note: Cannot specifyMatsTrace.Call.MessagingModelhere, as one cannot fathom where that would make sense: It must beQUEUE.- Specified by:
addNextCallin interfaceMatsTrace<Z>- Parameters:
from- which stageId this request is for. This is solely meant for monitoring and debugging - the protocol does not need the from specifier, as this is not where any replies go to.to- which endpoint that should get the message - the next stage in a multi-stage service.data- the request data, most often a JSON representing the Request Data Transfer Object that the next stage expects to get.state- the state data for the next stage.
-
addReplyCall
public MatsTraceFieldImpl<Z> addReplyCall(java.lang.String from, Z data)
Description copied from interface:MatsTraceAdds aREPLYCall, which happens when a requested service is finished with its processing and have some Reply to return. This method pops the stack (takes the last element) from the (previous) current call, sets this as the "to" parameter, and uses the rest of the list as the stack for the next Call.- Specified by:
addReplyCallin interfaceMatsTrace<Z>- Parameters:
from- which stageId this request is for. This is solely meant for monitoring and debugging - the protocol does not need the from specifier, as this is not where any replies go to.data- the request data, most often a JSON representing the Request Data Transfer Object that the requesting service expects to get.
-
addGotoCall
public MatsTrace<Z> addGotoCall(java.lang.String from, java.lang.String to, Z data, Z initialState)
- Specified by:
addGotoCallin interfaceMatsTrace<Z>data- the request data, most often a JSON representing the Request Data Transfer Object that the passed-to endpoint expects to get.initialState- an optional feature, whereby the state can be set for the initial stage of the requested endpoint.
-
setOutgoingTimestamp
public void setOutgoingTimestamp(long timestamp)
Description copied from interface:MatsTraceShall be invoked after adding the outgoing call, immediately before serializing the outgoing MatsTrace.- Sets the outgoing Call's
MatsTrace.Call.getCalledTimestamp()to be more closely aligned to the exact sending time. (For example, the message may have been constructed, then a massive SQL query was performed, and then a new message is constructed, and then the messages are actually turned into JMS messages and committed on the wire. This means that the first message will have a much earlier timestamp than the second.) Using this method, all outgoing messages can have the Called Timestamp set right before it is serialized and JMS-constructed and committed. - If the
MatsTrace.getCurrentCall()is a REQUEST, SEND, GOTO or PUBLISH (anything else than REPLY), it also sets the same-height-called-timestamp, recorded on the stackframe below it, or on the MatsTrace itself if there is no stackframe below (initial SEND). This is to be able to calculate the "time between stages" for the e.g. time between stage1 and stage2 of a multi-stage endpoint, noting that this might entail multiple levels of Request and Replies (thus it must reside on the stack).
- Specified by:
setOutgoingTimestampin interfaceMatsTrace<Z>
- Sets the outgoing Call's
-
getSameHeightOutgoingTimestamp
public long getSameHeightOutgoingTimestamp()
- Specified by:
getSameHeightOutgoingTimestampin interfaceMatsTrace<Z>- Returns:
- the timestamp set by
MatsTrace.setOutgoingTimestamp(long)for the preceding call on the same stack height. Used to calculate the "time between stages" for the different stages on an endpoint. It does not make sense to get this for the initial stage of an Endpoint if the incoming is a REQUEST, and the return value will then be-1.
-
setStageEnteredTimestamp
public void setStageEnteredTimestamp(long timestamp)
Description copied from interface:MatsTraceInvoke this as early as possible on the reception of a message. Used to calculate the "total endpoint time", through all stages (including intermediate request/replies): Time from entry on the Initial Stage, to when the endpoint Replies, or stops (no outgoing message).- Specified by:
setStageEnteredTimestampin interfaceMatsTrace<Z>
-
getSameHeightEndpointEnteredTimestamp
public long getSameHeightEndpointEnteredTimestamp()
- Specified by:
getSameHeightEndpointEnteredTimestampin interfaceMatsTrace<Z>- Returns:
- the value of
MatsTrace.setStageEnteredTimestamp(long)for the stages of the same endpoint. Used to calculate the "total endpoint time", through all stages, when the endpoint Replies, or stops (no outgoing message).
-
getCurrentSpanId
public long getCurrentSpanId()
- Specified by:
getCurrentSpanIdin interfaceMatsTrace<Z>- Returns:
- this MatsTrace's SpanId. If it is still on the initiator side, before having had a call added to it, or
on the terminator side, when the stack again is empty, the SpanId is derived from the
FlowId. Otherwise, it is the topmost element of an internal stack, in the same way asMatsTrace.getCurrentCall().MatsTrace.Call.getReplyStack().
-
getCurrentCall
public MatsTraceFieldImpl.CallImpl<Z> getCurrentCall()
-
getCallFlow
public java.util.List<MatsTrace.Call<Z>> getCallFlow()
- Specified by:
getCallFlowin interfaceMatsTrace<Z>- Returns:
- the flow of calls, from the first REQUEST (or SEND), to the
current call- unlessKeepTraceis MINIMAL, in which case only the current call is present in the list.
-
getCurrentState
public java.util.Optional<MatsTrace.StackState<Z>> getCurrentState()
Description copied from interface:MatsTraceReturns theMatsTrace.StackStatefor theMatsTrace.getCurrentCall(), if present. Searches in the'State Flow'from the back (most recent) for the first element that is at the current stack height, as defined byMatsTrace.getCurrentCall().MatsTrace.Call.getReplyStackHeight(). If a more shallow stackDepth than the specified is encountered, or the list is exhausted without the Stack Height being found, the search is terminated with null. This happens for the initial stage for an endpoint, unless the 'initialState' was set on the SEND or REQUEST. The point of the 'State Flow' is the same as for the Call list: Monitoring and debugging, by keeping a history of all calls in the processing, along with the states that was present at each call point. If "condensing" is on (COMPACTorMINIMAL), the stack-state-list is - by the condensing algorithm - turned in to a pure stack (as available viaMatsTrace.getStateStack()), with the StackState for the earliest stack element at position 0, while the latest (current) at end of list. The above-specified search algorithm still works, as it now will either find the element with the correct stack depth at the end of the list, or it is not there. NOTE: The StateStack (mostly) includes a frame for the current call, as opposed to theMatsTrace.Call.getReplyStack()(reply stack), which only includes frames below us. Note that as a matter of avoiding space use, on a REQUEST call, the StackState is not added for the actual REQUEST message's state stack, unless the "initial incoming state" is supplied (which is uncommon - a service invocation typically starts with an empty state). However, on REPLY messages, it will always be present, and hence the state stack is typically one level higher (includes current frame) than the reply stack (only includes frames below). NOTE: As further info on how the state stack relates to the reply stack height: When a REPLY comes to a terminator, there are 0 more frames below. However, the terminator needs its state, which is at state stack height 0.- Specified by:
getCurrentStatein interfaceMatsTrace<Z>- Returns:
- the
MatsTrace.StackStatefor theMatsTrace.getCurrentCall()if it exists,nullotherwise, as is typical when entering initial stage of an endpoint.
-
getStateFlow
public java.util.List<MatsTrace.StackState<Z>> getStateFlow()
- Specified by:
getStateFlowin interfaceMatsTrace<Z>- Returns:
- the entire list of states as they have changed throughout the call flow. If
MatsTrace.KeepMatsTraceis COMPACT or MINIMAL, then it will be a pure stack (as returned withMatsTrace.getStateStack(), with the last element being the most recent stack frame. NOTICE: The index position in this list has little to do with which stack level the state refers to. This must be gotten fromMatsTrace.StackState.getHeight(). - See Also:
for more information on how the "State Flow" works.
-
getStateStack
public java.util.List<MatsTrace.StackState<Z>> getStateStack()
- Specified by:
getStateStackin interfaceMatsTrace<Z>- Returns:
- the stack of the states for the current stack: getCurrentCall().getStack().
- See Also:
for more information on how the "State Flow" works.
-
getStateStack_internal
public java.util.List<io.mats3.serial.impl.MatsTraceFieldImpl.StackStateImpl<Z>> getStateStack_internal()
-
cloneForNewCall
protected MatsTraceFieldImpl<Z> cloneForNewCall()
Takes into account the KeepMatsTrace value.
-
toString
public java.lang.String toString()
MatsTraceStringImpl.toString().- Overrides:
toStringin classjava.lang.Object
-
-