User: simone  
  Date: 00/12/18 02:24:18

  Added:       src/main/org/jboss/monitor Monitorable.java
  Log:
  Basic interface that gives implementors JMX monitoring capabilities.
  
  Revision  Changes    Path
  1.1                  jboss/src/main/org/jboss/monitor/Monitorable.java
  
  Index: Monitorable.java
  ===================================================================
  /*
   * JBoss, the OpenSource EJB server
   *
   * Distributable under LGPL license.
   * See terms of license at gnu.org.
   */
  package org.jboss.monitor;
  
  /**
   *   
   * @author Simone Bordet ([EMAIL PROTECTED])
   * @version $Revision: 1.1 $
   */
  public interface Monitorable
  {
        // Constants ----------------------------------------------------
        
        // Static -------------------------------------------------------
  
        // Public -------------------------------------------------------
        /**
         * Samples the status of the implementor object and register the status
         * into the snapshot argument.
         */
        public void sample(Object snapshot);
  
        // Inner classes -------------------------------------------------
  }
  
  
  

Reply via email to