跳过导航链接
A D E F G H I M N P R S T 

A

attach(Handler) - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
attach(ExecutorService) - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
Attach an existing ExecutorService to dispatcher, so that we don't need to create an new one.
attach(Handler) - 类 中的方法moe.kaede.dispatcher.SimpleDispatcher
 
attach(Handler) - 接口 中的方法moe.kaede.dispatcher.Task.Dispatcher
Attach an existing scheduler to dispatcher, so that we don't need to create an new one.
attach(Handler) - 类 中的方法moe.kaede.dispatcher.ThreadDispatcher
 

D

Dispatchers() - 类 的构造器moe.kaede.dispatcher.Task.Dispatchers
 

E

ExecutorDispatcher - moe.kaede.dispatcher中的类
Task dispatcher impl with ExecutorService.
ExecutorDispatcher(int) - 类 的构造器moe.kaede.dispatcher.ExecutorDispatcher
 
ExecutorDispatcher(int, int) - 类 的构造器moe.kaede.dispatcher.ExecutorDispatcher
 

F

finish(Runnable) - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
finish(Runnable) - 类 中的方法moe.kaede.dispatcher.SimpleDispatcher
 
finish(Runnable) - 接口 中的方法moe.kaede.dispatcher.Task.Dispatcher
When a task is finished, it will call this method.
finish(Runnable) - 类 中的方法moe.kaede.dispatcher.ThreadDispatcher
 

G

getExecutor() - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 

H

has(int) - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
has(Runnable) - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
has(int) - 类 中的方法moe.kaede.dispatcher.SimpleDispatcher
 
has(Runnable) - 类 中的方法moe.kaede.dispatcher.SimpleDispatcher
已过时。
has(int) - 接口 中的方法moe.kaede.dispatcher.Task.Dispatcher
Check if there exists the task with the specific id.
has(Runnable) - 接口 中的方法moe.kaede.dispatcher.Task.Dispatcher
Check if there exists the task with the specific runnable.
has(int) - 类 中的方法moe.kaede.dispatcher.ThreadDispatcher
 
has(Runnable) - 类 中的方法moe.kaede.dispatcher.ThreadDispatcher
 

I

isRunning() - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
isRunning() - 类 中的方法moe.kaede.dispatcher.SimpleDispatcher
 
isRunning() - 接口 中的方法moe.kaede.dispatcher.Task.Dispatcher
Whether or not the dispatcher is working.
isRunning() - 类 中的方法moe.kaede.dispatcher.ThreadDispatcher
 

M

moe.kaede.dispatcher - 程序包 moe.kaede.dispatcher
 

N

newExecutorDispatcher(int) - 类 中的静态方法moe.kaede.dispatcher.Task.Dispatchers
 
newExecutorDispatcher(int, int) - 类 中的静态方法moe.kaede.dispatcher.Task.Dispatchers
 
newSimpleDispatcher() - 类 中的静态方法moe.kaede.dispatcher.Task.Dispatchers
 
newThread(Runnable) - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
newThreadDispatcher(int) - 类 中的静态方法moe.kaede.dispatcher.Task.Dispatchers
 
newThreadDispatcher(int, int) - 类 中的静态方法moe.kaede.dispatcher.Task.Dispatchers
 

P

post(Runnable) - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
post(int, Runnable) - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
post(Runnable) - 类 中的方法moe.kaede.dispatcher.SimpleDispatcher
 
post(int, Runnable) - 类 中的方法moe.kaede.dispatcher.SimpleDispatcher
 
post(Runnable) - 接口 中的方法moe.kaede.dispatcher.Task.Dispatcher
Add an task to the dispatcher.
post(int, Runnable) - 接口 中的方法moe.kaede.dispatcher.Task.Dispatcher
Add an task to the dispatcher with id.
post(Runnable) - 类 中的方法moe.kaede.dispatcher.ThreadDispatcher
 
post(int, Runnable) - 类 中的方法moe.kaede.dispatcher.ThreadDispatcher
 
postDelay(Runnable, long) - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
postDelay(int, Runnable, long) - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
postDelay(Runnable, long) - 类 中的方法moe.kaede.dispatcher.SimpleDispatcher
 
postDelay(int, Runnable, long) - 类 中的方法moe.kaede.dispatcher.SimpleDispatcher
 
postDelay(Runnable, long) - 接口 中的方法moe.kaede.dispatcher.Task.Dispatcher
Schedule an task to the dispatcher.
postDelay(int, Runnable, long) - 接口 中的方法moe.kaede.dispatcher.Task.Dispatcher
Schedule an task to the dispatcher with id.
postDelay(Runnable, long) - 类 中的方法moe.kaede.dispatcher.ThreadDispatcher
 
postDelay(int, Runnable, long) - 类 中的方法moe.kaede.dispatcher.ThreadDispatcher
 

R

rejectedExecution(Runnable, ThreadPoolExecutor) - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 

S

shutdown() - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
shutdown() - 类 中的方法moe.kaede.dispatcher.SimpleDispatcher
 
shutdown() - 接口 中的方法moe.kaede.dispatcher.Task.Dispatcher
Terminate the dispatcher.
shutdown() - 类 中的方法moe.kaede.dispatcher.ThreadDispatcher
 
SimpleDispatcher - moe.kaede.dispatcher中的类
Task dispatcher impl with a single HandlerThread.
SimpleDispatcher() - 类 的构造器moe.kaede.dispatcher.SimpleDispatcher
 
start() - 类 中的方法moe.kaede.dispatcher.ExecutorDispatcher
 
start() - 类 中的方法moe.kaede.dispatcher.SimpleDispatcher
 
start() - 接口 中的方法moe.kaede.dispatcher.Task.Dispatcher
Start the dispatcher before it can work.
start() - 类 中的方法moe.kaede.dispatcher.ThreadDispatcher
 

T

TAG - 接口 中的静态变量moe.kaede.dispatcher.Task.Dispatcher
 
Task - moe.kaede.dispatcher中的类
Task dispatcher allover api.
Task() - 类 的构造器moe.kaede.dispatcher.Task
 
Task.Dispatcher - moe.kaede.dispatcher中的接口
Task dispatcher interface.
Task.Dispatchers - moe.kaede.dispatcher中的类
Build utility for Task.Dispatcher
ThreadDispatcher - moe.kaede.dispatcher中的类
Task dispatcher impl with Thread.
ThreadDispatcher(int) - 类 的构造器moe.kaede.dispatcher.ThreadDispatcher
 
ThreadDispatcher(int, int) - 类 的构造器moe.kaede.dispatcher.ThreadDispatcher
 
A D E F G H I M N P R S T 
跳过导航链接