package mde.jini.service;
import java.rmi.*;
/**
* This is the remote interface for the tank daemon,
* which handles low-level IO to and from the tanks.
*/
public interface TankDaemon extends Remote {
/** start the tank daemon */
public void start()throws RemoteException;
}