程序包 mpi
类 Prequest
java.lang.Object
mpi.Request
mpi.Prequest
- 所有已实现的接口:
Freeable
Persistent request object.
-
字段概要
-
构造器概要
构造器 -
方法概要
从类继承的方法 mpi.Request
addRecvBufRef, addSendBufRef, cancel, free, getHandles, getNull, getStatus, isNull, setHandles, test, testAll, testAllStatus, testAny, testAnyStatus, testSome, testSomeStatus, testStatus, waitAll, waitAllStatus, waitAny, waitAnyStatus, waitFor, waitSome, waitSomeStatus, waitStatus
-
构造器详细资料
-
Prequest
protected Prequest(long handle) Constructor used bysendInit
, etc.- 参数:
handle
- Handle for the Prequest object
-
-
方法详细资料
-
start
Activate a persistent communication request.Java binding of the MPI operation
MPI_START
. The communication is completed by using the request in one of thewait
ortest
operations. On successful completion the request becomes inactive again. It can be reactivated by a further call toStart
.- 抛出:
MPIException
- Signals that an MPI exception of some sort has occurred.
-
startAll
Activate a list of communication requests.Java binding of the MPI operation
MPI_STARTALL
.- 参数:
requests
- array of requests- 抛出:
MPIException
- Signals that an MPI exception of some sort has occurred.
-