[This is preliminary documentation and is subject to change.]
Non-blocking send of a single value. 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 value, int dest, int tag ) |
| Visual Basic (Declaration) |
|---|
Public Function ImmediateSend(Of T) ( _ value As T, _ dest As Integer, _ tag As Integer _ ) As Request |
| Visual C++ |
|---|
public: generic<typename T> Request^ ImmediateSend( T value, int dest, int tag ) |
Parameters
- value
- Type: T
The value that will be transmitted.
- 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.