mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
add serializable
This commit is contained in:
@ -22,13 +22,16 @@
|
|||||||
package com.kingsrook.qqq.backend.core.processes.tracing;
|
package com.kingsrook.qqq.backend.core.processes.tracing;
|
||||||
|
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
** Basic class that can be passed in to ProcessTracerInterface.handleMessage.
|
** Basic class that can be passed in to ProcessTracerInterface.handleMessage.
|
||||||
** This class just provides for a string message. We anticipate subclasses
|
** This class just provides for a string message. We anticipate subclasses
|
||||||
** that may have more specific data, that specific tracer implementations may
|
** that may have more specific data, that specific tracer implementations may
|
||||||
** be aware of.
|
** be aware of.
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
public class ProcessTracerMessage
|
public class ProcessTracerMessage implements Serializable
|
||||||
{
|
{
|
||||||
private String message;
|
private String message;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user