Uses of Class
edu.mayo.bsi.ngsportal.shared.SGEFilter

Packages that use SGEFilter
edu.mayo.bsi.ngsportal.client   
edu.mayo.bsi.ngsportal.server   
edu.mayo.bsi.ngsportal.shared   
 

Uses of SGEFilter in edu.mayo.bsi.ngsportal.client
 

Methods in edu.mayo.bsi.ngsportal.client with parameters of type SGEFilter
 void SGEBarGraphImpl.setFilter(SGEFilter filter)
           
 

Uses of SGEFilter in edu.mayo.bsi.ngsportal.server
 

Methods in edu.mayo.bsi.ngsportal.server with parameters of type SGEFilter
 List<SGEScriptSummary> NGSPortalServiceImpl.getAvgCPUSecondsPerScript(SGEFilter filter, int connectionID)
           
 List<SGEScriptSummary> NGSPortalServiceImpl.getAvgRun(SGEFilter filter, int connectionID)
           
 Map<String,Integer> NGSPortalServiceImpl.getErrorsPerRun(SGEFilter filter, int connectionID)
           
 Map<String,Integer> NGSPortalServiceImpl.getFlowcellsPerMonth(SGEFilter filter, int connectID)
           
 Map<String,Integer> NGSPortalServiceImpl.getSamplesPerMonth(SGEFilter filter, int connectionID)
           
 List<SGEScriptSummary> NGSPortalServiceImpl.getScriptInvocations(SGEFilter filter, int connectionID)
           
 Map<String,Integer> NGSPortalServiceImpl.getSGEFlowcellsPerMonth(SGEFilter filter, int connectionID)
           
 List<SGEScriptSummary> NGSPortalServiceImpl.getSumCPUSecondsPerScript(SGEFilter filter, int connectionID)
           
 List<String> NGSPortalServiceImpl.getValidRLIMS(SGEFilter filter, int connectionID)
           
 Map<String,Double> NGSPortalServiceImpl.getWallClockPerRun(SGEFilter filter, int connectionID)
           
 Map<String,Double> NGSPortalServiceImpl.getWallClockPerSample(SGEFilter filter, int connectionID)
           
 

Uses of SGEFilter in edu.mayo.bsi.ngsportal.shared
 

Methods in edu.mayo.bsi.ngsportal.shared with parameters of type SGEFilter
 List<SGEScriptSummary> NGSPortalService.getAvgCPUSecondsPerScript(SGEFilter filter, int connectionID)
          Queries the portal database and returns a list of SGEScriptSummary containing the average of cpuseconds consumed by the scripts defined by the provided SGEFilter
 void NGSPortalServiceAsync.getAvgCPUSecondsPerScript(SGEFilter filter, int connectionID, com.google.gwt.user.client.rpc.AsyncCallback<List<SGEScriptSummary>> callback)
           
 List<SGEScriptSummary> NGSPortalService.getAvgRun(SGEFilter filter, int connectionID)
          Queries the portal database and returns a list of SGEScriptSummary containing the sum of cpuseconds consumed by the scripts defined by the provided SGEFilter
 void NGSPortalServiceAsync.getAvgRun(SGEFilter filter, int connectionID, com.google.gwt.user.client.rpc.AsyncCallback<List<SGEScriptSummary>> callback)
           
 Map<String,Integer> NGSPortalService.getErrorsPerRun(SGEFilter filter, int connectionID)
          Returns a set of pairs of RunIDs - ScriptNames and error counts defined by the passed filter object.
 void NGSPortalServiceAsync.getErrorsPerRun(SGEFilter filter, int connectID, com.google.gwt.user.client.rpc.AsyncCallback<Map<String,Integer>> asyncCallback)
           
 Map<String,Integer> NGSPortalService.getFlowcellsPerMonth(SGEFilter filter, int connectionID)
           
 void NGSPortalServiceAsync.getFlowcellsPerMonth(SGEFilter filter, int connectID, com.google.gwt.user.client.rpc.AsyncCallback<Map<String,Integer>> asyncCallback)
           
 Map<String,Integer> NGSPortalService.getSamplesPerMonth(SGEFilter filter, int connectionID)
          Returns a set of pairs of months and unique samples defined by the passed filter object.
 void NGSPortalServiceAsync.getSamplesPerMonth(SGEFilter filter, int connectID, com.google.gwt.user.client.rpc.AsyncCallback<Map<String,Integer>> asyncCallback)
           
 List<SGEScriptSummary> NGSPortalService.getScriptInvocations(SGEFilter filter, int connectionID)
          Queries the portal database and returns a list of SGEScriptSummary containing the total script invocations in the runs defined by the provided SGEFilter
 void NGSPortalServiceAsync.getScriptInvocations(SGEFilter filter, int connectionID, com.google.gwt.user.client.rpc.AsyncCallback<List<SGEScriptSummary>> callback)
           
 Map<String,Integer> NGSPortalService.getSGEFlowcellsPerMonth(SGEFilter filter, int connectionID)
           
 void NGSPortalServiceAsync.getSGEFlowcellsPerMonth(SGEFilter filter, int connectionID, com.google.gwt.user.client.rpc.AsyncCallback<Map<String,Integer>> callback)
           
 List<SGEScriptSummary> NGSPortalService.getSumCPUSecondsPerScript(SGEFilter filter, int connectionID)
          Queries the portal database and returns a list of SGEScriptSummary containing the sum of cpuseconds consumed by the scripts defined by the provided SGEFilter
 void NGSPortalServiceAsync.getSumCPUSecondsPerScript(SGEFilter filter, int connectionID, com.google.gwt.user.client.rpc.AsyncCallback<List<SGEScriptSummary>> callback)
           
 List<String> NGSPortalService.getValidRLIMS(SGEFilter filter, int connectionID)
          Queries the portal database and returns a list of possible RunIDs falling within the provided SGEFilter
 void NGSPortalServiceAsync.getValidRLIMS(SGEFilter filter, int connectionID, com.google.gwt.user.client.rpc.AsyncCallback<List<String>> callback)
           
 Map<String,Double> NGSPortalService.getWallClockPerRun(SGEFilter filter, int connectionID)
          Returns a set of pairs of WallClock times and RunIDs defined by the passed filter object.
 void NGSPortalServiceAsync.getWallClockPerRun(SGEFilter filter, int connectID, com.google.gwt.user.client.rpc.AsyncCallback<Map<String,Double>> asyncCallback)
           
 Map<String,Double> NGSPortalService.getWallClockPerSample(SGEFilter filter, int connectionID)
          Returns a set of pairs of WallClock times and SampleIDs defined by the passed filter object.
 void NGSPortalServiceAsync.getWallClockPerSample(SGEFilter filter, int connectID, com.google.gwt.user.client.rpc.AsyncCallback<Map<String,Double>> asyncCallback)