All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.intellij.concurrency.Job Maven / Gradle / Ivy

Go to download

A packaging of the IntelliJ Community Edition core-api library. This is release number 1 of trunk branch 142.

The newest version!
/*
 * Copyright 2000-2015 JetBrains s.r.o.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/*
 * @author max
 */
package com.intellij.concurrency;

import com.intellij.util.IncorrectOperationException;
import org.jetbrains.annotations.NotNull;

import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeoutException;

public interface Job {
  // the lower the priority the more important the task is
  @Deprecated
  int DEFAULT_PRIORITY = 100;

  String getTitle();

  void addTask(@NotNull Callable task);

  void addTask(@NotNull Runnable task, T result);

  void addTask(@NotNull Runnable task);

  List scheduleAndWaitForResults() throws Throwable;

  void cancel();

  boolean isCanceled();

  void schedule();

  boolean isDone();

  void waitForCompletion(int millis) throws InterruptedException, ExecutionException, TimeoutException, CancellationException;

  @NotNull
  Job NULL_JOB = new Job() {
    @Override
    public boolean isDone() {
      return true;
    }

    @Override
    public void waitForCompletion(int millis) {

    }

    @Override
    public void cancel() {
    }

    @Override
    public String getTitle() {
      return null;
    }

    @Override
    public void addTask(@NotNull Callable task) {
      throw new IncorrectOperationException();
    }

    @Override
    public void addTask(@NotNull Runnable task, Object result) {
      throw new IncorrectOperationException();
    }

    @Override
    public void addTask(@NotNull Runnable task) {
      throw new IncorrectOperationException();
    }

    @Override
    public List scheduleAndWaitForResults() throws Throwable {
      throw new IncorrectOperationException();
    }

    @Override
    public boolean isCanceled() {
      return true;
    }

    @Override
    public void schedule() {
      throw new IncorrectOperationException();
    }
  };

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy