Package net.sourceforge.fullsync

Examples of net.sourceforge.fullsync.TaskFinishedListener


                list.showItem(item);
              }
            }
          });

          synchronizer.performActions(taskTree, new TaskFinishedListener() {
            @Override
            public void taskFinished(final TaskFinishedEvent event) {
              updateQueue.add(event);
            }
          });
View Full Code Here


    return synchronizer.getIoStatistics(taskTree);
  }

  @Override
  public void performActions(TaskTree tree, final RemoteTaskFinishedListenerInterface remoteListener) throws RemoteException {
    TaskFinishedListener listener = null;
    if (remoteListener != null) {
      listener = new TaskFinishedListener() {
        @Override
        public void taskFinished(TaskFinishedEvent event) {
          try {
            remoteListener.taskFinished(event);
          }
View Full Code Here

TOP

Related Classes of net.sourceforge.fullsync.TaskFinishedListener

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.