[This is preliminary documentation and is subject to change.]
A request list contains a list of outstanding MPI requests.
Namespace:
MPIAssembly: MPI (in MPI.dll)
Version: 0.9.0.0 (0.9.0.0)
Syntax
| C# |
|---|
public class RequestList |
| Visual Basic (Declaration) |
|---|
Public Class RequestList |
| Visual C++ |
|---|
public ref class RequestList |
Remarks
The requests in a RequestList
are typically non-blocking send or receive operations (e.g.,
ImmediateSend<(Of <(T>)>)(T, Int32, Int32),
ImmediateReceive<(Of <(T>)>)(Int32, Int32)). The
request list provides the ability to operate on the set of MPI requests
as a whole, for example by waiting until all requests complete before
returning or testing whether any of the requests have completed.