Package org.apache.aurora.scheduler.events.PubsubEvent

Examples of org.apache.aurora.scheduler.events.PubsubEvent.TasksDeleted


    public boolean matches(Object argument) {
      if (!(argument instanceof TasksDeleted)) {
        return false;
      }

      TasksDeleted deleted = (TasksDeleted) argument;
      return taskIds.equals(Tasks.ids(deleted.getTasks()));
    }
View Full Code Here

TOP

Related Classes of org.apache.aurora.scheduler.events.PubsubEvent.TasksDeleted

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.