00001 package FitterI;
00002
00003
00013 public interface FitterInterfaceOperations extends ipc.servantOperations
00014 {
00015
00019 String status ();
00020
00022 String lastScan ();
00023
00025 String getFitOptions ();
00026
00028 String getFitStrategy ();
00029
00031 void setFitOptions (String opt);
00032
00034 void setFitStrategy (String name);
00035
00037 void fitAll ();
00038
00041 void fit (String name);
00042
00044 int busy ();
00045
00047 int queueLength ();
00048
00050 int nFitsDone ();
00051
00053 int nFitErrors ();
00054
00056 void setFifo (boolean fifo);
00057
00059 boolean isFifo ();
00060
00062 String[] listFitAlgorithms ();
00063
00065 String[] listFitStrategies ();
00066
00068 void setDebug (boolean value);
00069 }