00001 package FitterI;
00002
00003
00013 public interface FitterInterfaceOperations extends ipc.servantOperations
00014 {
00015 String status ();
00016 String lastScan ();
00017 String getFitOptions ();
00018
00019
00020 String getFitStrategy ();
00021 void setFitOptions (String opt);
00022 void setFitStrategy (String name);
00023 void fitAll ();
00024 void fit (String name);
00025 int busy ();
00026 int queueLength ();
00027 int nFitsDone ();
00028 int nFitErrors ();
00029 void useAnalyticAlgorithm (boolean use);
00030 boolean isUsingAnalyticAlgorithm ();
00031 void setFifo (boolean fifo);
00032 boolean isFifo ();
00033 }