Package org.apache.aurora.scheduler

Examples of org.apache.aurora.scheduler.TaskIdGenerator


    }
  }

  @Test
  public void testTaskIdLimit() throws Exception {
    taskIdGenerator = new TaskIdGenerator() {
      @Override
      public String generate(ITaskConfig input, int instanceCount) {
        return Strings.repeat("a", SchedulerCoreImpl.MAX_TASK_ID_LENGTH);
      }
    };
View Full Code Here


    scheduler.createJob(makeJob(KEY_A, 1));
  }

  @Test(expected = ScheduleException.class)
  public void testRejectLongTaskId() throws Exception {
    taskIdGenerator = new TaskIdGenerator() {
      @Override
      public String generate(ITaskConfig input, int instanceCount) {
        return Strings.repeat("a", SchedulerCoreImpl.MAX_TASK_ID_LENGTH + 1);
      }
    };
View Full Code Here

TOP

Related Classes of org.apache.aurora.scheduler.TaskIdGenerator

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.