view src/org/dancres/blitz/remote/AdminServer.java @ 35:6f68e94c1fb8 default tip

Add CondensedStats monitoring utility, equivalent to vmstat
author Dominic Cleal <dominic-cleal@cdo2.com>
date Thu, 05 Aug 2010 11:07:25 +0100
parents 3dc0c5604566
children
line wrap: on
line source

package org.dancres.blitz.remote;

import java.rmi.Remote;

import com.sun.jini.admin.DestroyAdmin;

import net.jini.admin.JoinAdmin;

/**
   All Admin interfaces are grouped under this interface to make
   differentiation between the various remote aspects easier.
   Note that although we implement destroyadmin we only shutdown - we do
   not delete persistent storage.  This allows for remote shutdown which, IMHO,
   should be a separate management method.  If one wishes to actually destroy
   a Blitz instance, one could call this destroy method and then delete the
   contents of the persistence and log directories as specified in the
   config file.
 */
public interface AdminServer extends Remote, JoinAdmin, StatsAdmin, 
                                     BlitzAdmin, DestroyAdmin, EntryViewAdmin {
}