A B C D E F G H I L N P R S T U V W 

A

Actor - com.iih5.actor中的类
并发包中核心的类,负责处理所有任务,并且保证同一Actor提交的任务 都在同一线程中顺序执行,每个Actor对应一个 ActorExecutor但是同一个ActorExecutor 可以为多个Actor服务 Actor可以切换ActorExecutor 切换时为了保证线程安全一致性 会改变Actor状态为ActorState.TRANSITIVE 处于此状态时, 任务不会马上提交执行,而是会先放入缓冲队列中等待状态恢复正常时下次任务激活执行
Actor(ActorManager) - 类 的构造器com.iih5.actor.Actor
 
ActorExecutor - com.iih5.actor中的类
ActorExecutor 翻译为Actor执行线程 每个Actor执行线程维护一个任务队列,提交的任务会首先进入队列,用于确保提交的任务按顺序执行
ActorExecutor() - 类 的构造器com.iih5.actor.ActorExecutor
 
ActorManager - com.iih5.actor中的类
线程并发包管理类,负责为提交者分配actor
ActorManager(int, ThreadFactory) - 类 的构造器com.iih5.actor.ActorManager
 
ActorManager() - 类 的构造器com.iih5.actor.ActorManager
 
ActorState - com.iih5.actor中的枚举
 
addListener(TaskFutureListener) - 类 中的方法com.iih5.actor.scheduler.ScheduledTask
 
addLoopTask(LoopScheduledTask) - 类 中的方法com.iih5.actor.Actor
 
addLoopTask(LoopScheduledTask) - 接口 中的方法com.iih5.actor.IActor
添加定时循环执行的任务
addTask(ScheduledTask) - 类 中的方法com.iih5.actor.Actor
 
addTask(ScheduledTask) - 接口 中的方法com.iih5.actor.IActor
 
asList(T...) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a fixed-size list backed by the specified array.
assignActorExecutor() - 类 中的方法com.iih5.actor.ActorManager
得到一个MessageTaskExecutor
ATOMIC_COUNTER - 类 中的静态变量com.iih5.actor.util.GlobalConstant
全局计数器

B

binarySearch(long[], long) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches the specified array of longs for the specified value using the binary search algorithm.
binarySearch(long[], int, int, long) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches a range of the specified array of longs for the specified value using the binary search algorithm.
binarySearch(int[], int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches the specified array of ints for the specified value using the binary search algorithm.
binarySearch(int[], int, int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches a range of the specified array of ints for the specified value using the binary search algorithm.
binarySearch(short[], short) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches the specified array of shorts for the specified value using the binary search algorithm.
binarySearch(short[], int, int, short) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches a range of the specified array of shorts for the specified value using the binary search algorithm.
binarySearch(char[], char) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches the specified array of chars for the specified value using the binary search algorithm.
binarySearch(char[], int, int, char) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches a range of the specified array of chars for the specified value using the binary search algorithm.
binarySearch(byte[], byte) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches the specified array of bytes for the specified value using the binary search algorithm.
binarySearch(byte[], int, int, byte) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches a range of the specified array of bytes for the specified value using the binary search algorithm.
binarySearch(double[], double) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches the specified array of doubles for the specified value using the binary search algorithm.
binarySearch(double[], int, int, double) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches a range of the specified array of doubles for the specified value using the binary search algorithm.
binarySearch(float[], float) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches the specified array of floats for the specified value using the binary search algorithm.
binarySearch(float[], int, int, float) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches a range of the specified array of floats for the specified value using the binary search algorithm.
binarySearch(Object[], Object) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches the specified array for the specified object using the binary search algorithm.
binarySearch(Object[], int, int, Object) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches a range of the specified array for the specified object using the binary search algorithm.
binarySearch(T[], T, Comparator<? super T>) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches the specified array for the specified object using the binary search algorithm.
binarySearch(T[], int, int, T, Comparator<? super T>) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Searches a range of the specified array for the specified object using the binary search algorithm.

C

cancelTask(String, boolean) - 类 中的方法com.iih5.actor.Actor
取消指定名称的任务
cancelTask(String, boolean) - 接口 中的方法com.iih5.actor.IActor
取消指定名称的任务
com.iih5.actor - 程序包 com.iih5.actor
 
com.iih5.actor.scheduler - 程序包 com.iih5.actor.scheduler
 
com.iih5.actor.util - 程序包 com.iih5.actor.util
 
compareTo(IActorExecutor) - 类 中的方法com.iih5.actor.ActorExecutor
根据RunnableExecutor中等待完成任务的数量比较优先级
completed(ScheduledTask) - 接口 中的方法com.iih5.actor.scheduler.TaskFutureListener
 
copyOf(T[], int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified array, truncating or padding with nulls (if necessary) so the copy has the specified length.
copyOf(U[], int, Class<? extends T[]>) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified array, truncating or padding with nulls (if necessary) so the copy has the specified length.
copyOf(byte[], int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
copyOf(short[], int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
copyOf(int[], int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
copyOf(long[], int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
copyOf(char[], int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified array, truncating or padding with null characters (if necessary) so the copy has the specified length.
copyOf(float[], int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
copyOf(double[], int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
copyOf(boolean[], int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified array, truncating or padding with false (if necessary) so the copy has the specified length.
copyOfRange(T[], int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified range of the specified array into a new array.
copyOfRange(U[], int, int, Class<? extends T[]>) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified range of the specified array into a new array.
copyOfRange(byte[], int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified range of the specified array into a new array.
copyOfRange(short[], int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified range of the specified array into a new array.
copyOfRange(int[], int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified range of the specified array into a new array.
copyOfRange(long[], int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified range of the specified array into a new array.
copyOfRange(char[], int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified range of the specified array into a new array.
copyOfRange(float[], int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified range of the specified array into a new array.
copyOfRange(double[], int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified range of the specified array into a new array.
copyOfRange(boolean[], int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Copies the specified range of the specified array into a new array.
createActor() - 类 中的方法com.iih5.actor.ActorManager
创建一个已分配好执行任务Executor的Submiter
createActor(String) - 类 中的方法com.iih5.actor.ActorManager
创建一个已分配好执行任务Executor的Submiter
createThreadFactory(String) - 类 中的静态方法com.iih5.actor.util.ThreadFactoryUtil
创建指定线程名前缀的ThreadFactory,后缀ID自增

D

decrActorCount() - 类 中的方法com.iih5.actor.ActorExecutor
 
decrActorCount() - 接口 中的方法com.iih5.actor.IActorExecutor
actor数量减1
deepEquals(Object[], Object[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns true if the two specified arrays are deeply equal to one another.
deepHashCode(Object[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a hash code based on the "deep contents" of the specified array.
deepToString(Object[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a string representation of the "deep contents" of the specified array.
delay - 类 中的变量com.iih5.actor.scheduler.ScheduledTask
 

E

equals(long[], long[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns true if the two specified arrays of longs are equal to one another.
equals(int[], int[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns true if the two specified arrays of ints are equal to one another.
equals(short[], short[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns true if the two specified arrays of shorts are equal to one another.
equals(char[], char[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns true if the two specified arrays of chars are equal to one another.
equals(byte[], byte[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns true if the two specified arrays of bytes are equal to one another.
equals(boolean[], boolean[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns true if the two specified arrays of booleans are equal to one another.
equals(double[], double[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns true if the two specified arrays of doubles are equal to one another.
equals(float[], float[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns true if the two specified arrays of floats are equal to one another.
equals(Object[], Object[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns true if the two specified arrays of Objects are equal to one another.
execute(Runnable) - 类 中的方法com.iih5.actor.Actor
保证同一Session中的任务必须在同一线程中顺序执行 判断Submiter是否为过渡状态,如果是过渡状态 则任务不直接提交到Executor执行队列中,而且是提交到过渡任务队列中 当submiter切换Executor完毕后,将过渡任务队列中的内容提交到新的Executor执行。
execute(Callable<T>) - 类 中的方法com.iih5.actor.Actor
 
execute(Runnable) - 接口 中的方法com.iih5.actor.IActor
立即将任务提交到队列中
execute(Callable<T>) - 接口 中的方法com.iih5.actor.IActor
立即将任务提交到队列中
execute() - 类 中的方法com.iih5.actor.scheduler.ScheduledTask
任务执行逻辑
executor - 类 中的变量com.iih5.actor.Actor
 

F

fill(long[], long) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified long value to each element of the specified array of longs.
fill(long[], int, int, long) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified long value to each element of the specified range of the specified array of longs.
fill(int[], int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified int value to each element of the specified array of ints.
fill(int[], int, int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified int value to each element of the specified range of the specified array of ints.
fill(short[], short) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified short value to each element of the specified array of shorts.
fill(short[], int, int, short) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified short value to each element of the specified range of the specified array of shorts.
fill(char[], char) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified char value to each element of the specified array of chars.
fill(char[], int, int, char) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified char value to each element of the specified range of the specified array of chars.
fill(byte[], byte) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified byte value to each element of the specified array of bytes.
fill(byte[], int, int, byte) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified byte value to each element of the specified range of the specified array of bytes.
fill(boolean[], boolean) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified boolean value to each element of the specified array of booleans.
fill(boolean[], int, int, boolean) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified boolean value to each element of the specified range of the specified array of booleans.
fill(double[], double) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified double value to each element of the specified array of doubles.
fill(double[], int, int, double) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified double value to each element of the specified range of the specified array of doubles.
fill(float[], float) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified float value to each element of the specified array of floats.
fill(float[], int, int, float) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified float value to each element of the specified range of the specified array of floats.
fill(Object[], Object) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified Object reference to each element of the specified array of Objects.
fill(Object[], int, int, Object) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Assigns the specified Object reference to each element of the specified range of the specified array of Objects.
finalize() - 类 中的方法com.iih5.actor.Actor
 
fixRate - 类 中的变量com.iih5.actor.scheduler.LoopScheduledTask
 

G

getActor(String) - 类 中的方法com.iih5.actor.ActorManager
根据名字获取Actor
getActorCount() - 类 中的方法com.iih5.actor.ActorExecutor
 
getActorCount() - 接口 中的方法com.iih5.actor.IActorExecutor
获取actor数量
getActorExecutors() - 类 中的方法com.iih5.actor.ActorManager
 
getActorState() - 类 中的方法com.iih5.actor.Actor
 
getActorState() - 接口 中的方法com.iih5.actor.IActor
 
getDelay() - 类 中的方法com.iih5.actor.scheduler.ScheduledTask
 
getExecutor() - 类 中的方法com.iih5.actor.Actor
 
getExecutor() - 接口 中的方法com.iih5.actor.IActor
获取actor的执行Executor(线程)
getId() - 类 中的方法com.iih5.actor.Actor
 
getId() - 接口 中的方法com.iih5.actor.IActor
actor unique ID
getName() - 类 中的方法com.iih5.actor.scheduler.ScheduledTask
 
getPeriod() - 类 中的方法com.iih5.actor.scheduler.LoopScheduledTask
 
getScheduledExecutorService() - 类 中的方法com.iih5.actor.ActorManager
用来提交延时任务到队列中的线程池
getUndoneTaskSize() - 类 中的方法com.iih5.actor.ActorExecutor
 
getUndoneTaskSize() - 接口 中的方法com.iih5.actor.IActorExecutor
 
getUnit() - 类 中的方法com.iih5.actor.scheduler.ScheduledTask
 
GlobalConstant - com.iih5.actor.util中的类
Created by XUEYI on 2016/4/1.
GlobalConstant() - 类 的构造器com.iih5.actor.util.GlobalConstant
 

H

hashCode(long[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a hash code based on the contents of the specified array.
hashCode(int[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a hash code based on the contents of the specified array.
hashCode(short[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a hash code based on the contents of the specified array.
hashCode(char[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a hash code based on the contents of the specified array.
hashCode(byte[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a hash code based on the contents of the specified array.
hashCode(boolean[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a hash code based on the contents of the specified array.
hashCode(float[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a hash code based on the contents of the specified array.
hashCode(double[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a hash code based on the contents of the specified array.
hashCode(Object[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a hash code based on the contents of the specified array.

I

IActor - com.iih5.actor中的接口
任务提交者接口,同一个Submiter提交的所有任务,能确保在同一个线程中顺序执行
IActorExecutor - com.iih5.actor中的接口
任务执行Executor接口
incrActorCount() - 类 中的方法com.iih5.actor.ActorExecutor
 
incrActorCount() - 接口 中的方法com.iih5.actor.IActorExecutor
actor数量加1
isFixRate() - 类 中的方法com.iih5.actor.scheduler.LoopScheduledTask
 

L

listeners - 类 中的变量com.iih5.actor.scheduler.ScheduledTask
 
ListSortUtil - com.iih5.actor.util中的类
 
LoopScheduledTask - com.iih5.actor.scheduler中的类
 
LoopScheduledTask(String) - 类 的构造器com.iih5.actor.scheduler.LoopScheduledTask
 

N

name - 类 中的变量com.iih5.actor.scheduler.ScheduledTask
 

P

period - 类 中的变量com.iih5.actor.scheduler.LoopScheduledTask
 

R

removeListener(TaskFutureListener) - 类 中的方法com.iih5.actor.scheduler.ScheduledTask
 
run() - 类 中的方法com.iih5.actor.ActorExecutor
 
run() - 类 中的方法com.iih5.actor.scheduler.ScheduledTask
 

S

scheduleAtFixedRateTask(Runnable, long, long, TimeUnit) - 类 中的方法com.iih5.actor.Actor
 
scheduleAtFixedRateTask(Runnable, long, long, TimeUnit) - 接口 中的方法com.iih5.actor.IActor
 
scheduledTask(Runnable, long, TimeUnit) - 类 中的方法com.iih5.actor.Actor
 
scheduledTask(Callable<?>, long, TimeUnit) - 类 中的方法com.iih5.actor.Actor
 
scheduledTask(Runnable, long, TimeUnit) - 接口 中的方法com.iih5.actor.IActor
延时将任务提交到队列中
scheduledTask(Callable<?>, long, TimeUnit) - 接口 中的方法com.iih5.actor.IActor
延时将任务提交到队列中
ScheduledTask - com.iih5.actor.scheduler中的类
 
ScheduledTask(String) - 类 的构造器com.iih5.actor.scheduler.ScheduledTask
 
scheduleWithFixedDelayTask(Runnable, long, long, TimeUnit) - 类 中的方法com.iih5.actor.Actor
 
scheduleWithFixedDelayTask(Runnable, long, long, TimeUnit) - 接口 中的方法com.iih5.actor.IActor
 
setDelay(long) - 类 中的方法com.iih5.actor.scheduler.ScheduledTask
 
setExecutor(IActorExecutor) - 类 中的方法com.iih5.actor.Actor
如果是切换Executor,在切换Executor之前,必须将State设置为SubmiterState.TRANSITIVE
setExecutor(IActorExecutor) - 接口 中的方法com.iih5.actor.IActor
设置actor执行Executor 用于切换工作场景时,切换执行线程,比如用户进入某个房间,则要设置为房间的执行线程,这样就消除多线程的问题)
setFixRate(boolean) - 类 中的方法com.iih5.actor.scheduler.LoopScheduledTask
 
setName(String) - 类 中的方法com.iih5.actor.scheduler.ScheduledTask
 
setPeriod(long) - 类 中的方法com.iih5.actor.scheduler.LoopScheduledTask
 
setUnit(TimeUnit) - 类 中的方法com.iih5.actor.scheduler.ScheduledTask
 
shutdown() - 类 中的方法com.iih5.actor.ActorManager
关闭ActorManager线程池
sort(List<T>) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Sorts the specified list into ascending order, according to the natural ordering of its elements.
sort(Object[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Sorts the specified array of objects into ascending order, according to the natural ordering of its elements.
sort(Object[], int, int) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Sorts the specified range of the specified array of objects into ascending order, according to the natural ordering of its elements.
sort(T[], Comparator<? super T>) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Sorts the specified array of objects according to the order induced by the specified comparator.
sort(T[], int, int, Comparator<? super T>) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Sorts the specified range of the specified array of objects according to the order induced by the specified comparator.
submit(Runnable) - 类 中的方法com.iih5.actor.ActorExecutor
 
submit(Runnable) - 接口 中的方法com.iih5.actor.IActorExecutor
提交任务给Executor
switchExecutor(IActorExecutor) - 类 中的方法com.iih5.actor.Actor
 
switchExecutor(IActorExecutor) - 接口 中的方法com.iih5.actor.IActor
设置actor执行Executor 用于切换工作场景时,切换执行线程,比如用户进入某个房间,则要设置为房间的执行线程,这样就消除多线程的问题)

T

TaskFutureListener - com.iih5.actor.scheduler中的接口
 
ThreadFactoryUtil - com.iih5.actor.util中的类
 
ThreadFactoryUtil() - 类 的构造器com.iih5.actor.util.ThreadFactoryUtil
 
threadPool - 类 中的变量com.iih5.actor.ActorManager
 
threadSize - 类 中的变量com.iih5.actor.ActorManager
 
toString(long[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a string representation of the contents of the specified array.
toString(int[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a string representation of the contents of the specified array.
toString(short[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a string representation of the contents of the specified array.
toString(char[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a string representation of the contents of the specified array.
toString(byte[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a string representation of the contents of the specified array.
toString(boolean[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a string representation of the contents of the specified array.
toString(float[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a string representation of the contents of the specified array.
toString(double[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a string representation of the contents of the specified array.
toString(Object[]) - 类 中的静态方法com.iih5.actor.util.ListSortUtil
Returns a string representation of the contents of the specified array.

U

unit - 类 中的变量com.iih5.actor.scheduler.ScheduledTask
 

V

valueOf(String) - 枚举 中的静态方法com.iih5.actor.ActorState
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法com.iih5.actor.ActorState
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。

W

workThread() - 类 中的方法com.iih5.actor.ActorExecutor
 
workThread() - 接口 中的方法com.iih5.actor.IActorExecutor
 
A B C D E F G H I L N P R S T U V W 

Copyright © 2016. All rights reserved.