Package de.scoopgmbh.copper.monitoring.client.ui.adaptermonitoring.result

Examples of de.scoopgmbh.copper.monitoring.client.ui.adaptermonitoring.result.AdapterLaunchRowModel


  public ObservableList<AdapterLaunchRowModel> getAdapterLaunches(Date from, Date to, int maxCount){
    try {
      ObservableList<AdapterLaunchRowModel> result = FXCollections.observableArrayList();
      List<AdapterWfLaunchInfo> list = copperMonitoringService.getList(new TypeFilter<AdapterWfLaunchInfo>(AdapterWfLaunchInfo.class), from, to, maxCount);
      for (AdapterWfLaunchInfo dapterLaunchInfo: list){
        result.add(new AdapterLaunchRowModel(dapterLaunchInfo));
      }
      return result;
    } catch (RemoteException e) {
      throw new RuntimeException(e);
    }
View Full Code Here


        return Long.valueOf(o1.time).compareTo(Long.valueOf(o2.time));
      }
    });
    for (TimeValuePair<Object> output: outputsSorted){
      if (output.value instanceof AdapterLaunchRowModel){
        AdapterLaunchRowModel adapterLaunchRowModel = (AdapterLaunchRowModel)output.value;
        addLaunchEventAnimation(
                        adapterLaunchRowModel.timestamp.get().getTime(),
                        adapterLaunchRowModel.workflowname.get(),
                        adapterLaunchRowModel.adapterName.get());
      }
View Full Code Here

TOP

Related Classes of de.scoopgmbh.copper.monitoring.client.ui.adaptermonitoring.result.AdapterLaunchRowModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.