Class LogThreadsHoldingLockAgent

java.lang.Object
com.tangosol.util.Base
com.tangosol.net.AbstractInvocable
com.tangosol.coherence.servlet.LogThreadsHoldingLockAgent
All Implemented Interfaces:
ExternalizableLite, Invocable, InvocableInOrder, PriorityTask, Serializable, Runnable

public class LogThreadsHoldingLockAgent extends AbstractInvocable implements ExternalizableLite
An invocation service that logs the stacktraces of all threads holding a lock for a session.
Version:
Coherence 3.6
Author:
jk 2009.12.10
See Also:
  • Field Details

  • Constructor Details

    • LogThreadsHoldingLockAgent

      public LogThreadsHoldingLockAgent()
      Constructor
    • LogThreadsHoldingLockAgent

      public LogThreadsHoldingLockAgent(String sId)
      Constructor
      Parameters:
      sId - session id
  • Method Details

    • run

      public void run()
      Log the stacktraces of all the threads holding a lock for the session with id m_sId
      Specified by:
      run in interface Invocable
      Specified by:
      run in interface Runnable
    • logThreadStackTraces

      protected void logThreadStackTraces(String sId, AbstractHttpSessionCollection collection)
    • writeToLog

      protected void writeToLog(StringBuilder s)
      Delegating method for logging for mock testing purposes
      Parameters:
      s - the string to log
    • threadStackTrace

      protected StringBuilder threadStackTrace(Thread t)
      Create a StringBuilder which contains the stacktrace for the Thread argument
      Parameters:
      t - the Thread
      Returns:
      a StringBuilder with the stacktrace for t
    • readExternal

      public void readExternal(DataInput in) throws IOException
      Restore the contents of this object by loading the object's state from the passed DataInput object.
      Specified by:
      readExternal in interface ExternalizableLite
      Parameters:
      in - the DataInput stream to read data from in order to restore the state of this object
      Throws:
      IOException - if an I/O exception occurs
    • writeExternal

      public void writeExternal(DataOutput out) throws IOException
      Save the contents of this object by storing the object's state into the passed DataOutput object.
      Specified by:
      writeExternal in interface ExternalizableLite
      Parameters:
      out - the DataOutput stream to write the state of this object to
      Throws:
      IOException - if an I/O exception occurs