Changes between Version 13 and Version 14 of net.sf.basedb.opengrid/using
- Timestamp:
- Jan 25, 2017, 8:35:45 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
net.sf.basedb.opengrid/using
v13 v14 26 26 '''Java code in a servlet running on the BASE web server''' 27 27 {{{ 28 #!java 28 29 DbControl dc = ... // We need an open DbControl from BASE 29 30 … … 46 47 '''!JavaScript code running in the web browser the current user is using''' 47 48 {{{ 49 #!js 48 50 // In the web client use the JSON data to populate a <select> list 49 51 var list = document.getElementById('cluster-list'); … … 76 78 77 79 {{{ 80 #!java 78 81 ScriptBuilder script = new ScriptBuilder(); 79 82 // Copy all files we need to the local cluster node … … 121 124 122 125 {{{ 126 #!java 123 127 DbControl dc = .... // We need an open DbControl from BASE 124 128 String clusterId = ... // The ID of the cluster selected by the user … … 175 179 176 180 {{{ 181 #!java 177 182 public class MyAnalysisJobCompletionHandlerFactory 178 183 implements ActionFactory<JobCompletionHandler> … … 233 238 234 239 {{{ 240 #!java 235 241 public class MyAnalysisCompletionHandler 236 242 implements JobCompletionHandler … … 289 295 290 296 {{{ 297 #!java 291 298 String barcode = ... // Something that identifies the current sequencing 292 299 String clusterId = ... // The Open Grid Cluster we use to check status … … 311 318 312 319 {{{ 320 #!java 313 321 public class SequencingSignalHandler 314 322 implements SignalHandler, JobStatusUpdater … … 361 369 362 370 {{{ 371 #!java 363 372 public class MySequencingJobCompletionHandlerFactory 364 373 implements ActionFactory<JobCompletionHandler> … … 389 398 390 399 {{{ 400 #!java 391 401 // We need a filter that listens for SERVICE_STARTED event 392 402 // related to the Open Grid Scheduler service