提交 6018f9eb 编写于 作者: 冰 河's avatar 冰 河

提交自定义线程池源码

上级 4e700d1a
/**
* Copyright 2020-9999 the original author or authors.
* <p>
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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 io.binghe.concurrent.policy;
import io.binghe.concurrent.queue.BlockingQueue;
/**
* @author binghe(公众号:冰河技术)
* @version 1.0.0
* @description 拒绝策略接口
*/
@FunctionalInterface
public interface RejectHandler<T> {
/**
* 拒绝任务回调接口
*/
void reject(BlockingQueue<T> queue, T task);
}
/**
* Copyright 2020-9999 the original author or authors.
* <p>
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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 io.binghe.concurrent.queue;
import java.util.concurrent.TimeUnit;
/**
* @author binghe(公众号:冰河技术)
* @version 1.0.0
* @description 自定义阻塞队列接口
*/
public interface BlockingQueue<T> {
/**
* 超时获取并移除队列数据
*/
T poll(long timeout, TimeUnit timeUnit);
/**
* 阻塞获取并移除队列数据
*/
T take();
/**
* 向队列中添加元素
*/
void put(T task);
/**
* 向队列中超时添加元素
*/
boolean offer(T task, long time, TimeUnit timeUnit);
/**
* 返回队列中元素的个数
*/
int size();
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册