[This is preliminary documentation and is subject to change.]
Non-blocking send of an array of data. This routine will initiate communication and
then return immediately with a Request object that can be used to
query the status of the communication.
Namespace:
MPIAssembly: MPI (in MPI.dll)
Version: 0.9.0.0 (0.9.0.0)
Syntax
| C# |
|---|
public Request ImmediateSend<T>( T[] values, int dest, int tag ) |
| Visual Basic (Declaration) |
|---|
Public Function ImmediateSend(Of T) ( _ values As T(), _ dest As Integer, _ tag As Integer _ ) As Request |
| Visual C++ |
|---|
public: generic<typename T> Request^ ImmediateSend( array<T>^ values, int dest, int tag ) |
Parameters
- values
- Type: array<
T
>[]()[]
The array of values that will be transmitted. If T is a value type, do not change the values in this array before the resulting request has been completed, because the implementation may send these values at any time.
- dest
- Type: System..::.Int32
The rank of the destination process.
- tag
- Type: System..::.Int32
The tag used to identify this message.
Type Parameters
- T
- Any serializable type.