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