spring AsyncListenableTaskExecutor 源码

  • 2022-08-08
  • 浏览 (315)

spring AsyncListenableTaskExecutor 代码

文件路径:/spring-core/src/main/java/org/springframework/core/task/AsyncListenableTaskExecutor.java

/*
 * Copyright 2002-2022 the original author or authors.
 *
 * 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
 *
 *      https://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.
 */

package org.springframework.core.task;

import java.util.concurrent.Callable;

import org.springframework.util.concurrent.ListenableFuture;

/**
 * Extension of the {@link AsyncTaskExecutor} interface, adding the capability to submit
 * tasks for {@link ListenableFuture ListenableFutures}.
 *
 * @author Arjen Poutsma
 * @since 4.0
 * @see ListenableFuture
 * @deprecated as of 6.0, in favor of
 * {@link AsyncTaskExecutor#submitCompletable(Runnable)} and
 * {@link AsyncTaskExecutor#submitCompletable(Callable)}
 */
@Deprecated
public interface AsyncListenableTaskExecutor extends AsyncTaskExecutor {

	/**
	 * Submit a {@code Runnable} task for execution, receiving a {@code ListenableFuture}
	 * representing that task. The Future will return a {@code null} result upon completion.
	 * @param task the {@code Runnable} to execute (never {@code null})
	 * @return a {@code ListenableFuture} representing pending completion of the task
	 * @throws TaskRejectedException if the given task was not accepted
	 * @deprecated in favor of {@link AsyncTaskExecutor#submitCompletable(Runnable)}
	 */
	@Deprecated
	ListenableFuture<?> submitListenable(Runnable task);

	/**
	 * Submit a {@code Callable} task for execution, receiving a {@code ListenableFuture}
	 * representing that task. The Future will return the Callable's result upon
	 * completion.
	 * @param task the {@code Callable} to execute (never {@code null})
	 * @return a {@code ListenableFuture} representing pending completion of the task
	 * @throws TaskRejectedException if the given task was not accepted
	 * @deprecated in favor of {@link AsyncTaskExecutor#submitCompletable(Callable)}
	 */
	@Deprecated
	<T> ListenableFuture<T> submitListenable(Callable<T> task);

}

相关信息

spring 源码目录

相关文章

spring AsyncTaskExecutor 源码

spring SimpleAsyncTaskExecutor 源码

spring SyncTaskExecutor 源码

spring TaskDecorator 源码

spring TaskExecutor 源码

spring TaskRejectedException 源码

spring TaskTimeoutException 源码

spring package-info 源码

0  赞