/*D
   MPIX_Stream_recv - Receive a message from a specific source stream to a specific local stream

Synopsis:
.vb
int MPIX_Stream_recv(void *buf, int count, MPI_Datatype datatype, int source,
                     int tag, MPI_Comm comm, int source_stream_index,
                     int dest_stream_index, MPI_Status *status)
.ve
.vb
int MPIX_Stream_recv_c(void *buf, MPI_Count count, MPI_Datatype datatype,
                       int source, int tag, MPI_Comm comm,
                       int source_stream_index, int dest_stream_index,
                       MPI_Status *status)
.ve

Input Parameters:
+ count - number of elements in receive buffer (non-negative integer)
. datatype - datatype of each receive buffer element (handle)
. source - rank of source or MPI_ANY_SOURCE (integer)
. tag - message tag or MPI_ANY_TAG (integer)
. comm - communicator (handle)
. source_stream_index - source_stream_index (integer)
- dest_stream_index - dest_stream_index (integer)

Output Parameters:
+ buf - initial address of receive buffer (choice)
- status - status object (Status)

.N ThreadSafe

.N Fortran

.N Errors
.N MPI_SUCCESS
.N MPI_ERR_ARG
.N MPI_ERR_BUFFER
.N MPI_ERR_COMM
.N MPI_ERR_COUNT
.N MPI_ERR_RANK
.N MPI_ERR_TAG
.N MPI_ERR_TYPE
.N MPI_ERR_OTHER

D*/

