a0IFReceive()

Starts a non-blocking receive with a format.


Syntax

a0tError a0IFReceive(
a0tPort *port,
int source,
int tag,
a0tRequest *request,
a0tFormat *format,
void *address,
int count );

Arguments

Namerd/wrDescription
port read Port to listen to (on caller's node).
source read Source node to listen to.
tag read Tag to use.
request write Request descriptor to hold the status.
format read Format of the data to receive.
address write Address where the received data goes.
count read Number of elements to receive.

Description

This function starts a non-blocking receive on a given port port, from a given source node source (or A0AnySource if any node will do), with a given tag tag. A request is posted to receive a message described by format, starting at address, with count elements.

On return of this function, the variable pointed by request contains an opaque request that can be used later to test or wait the completion or check the status of the operation.


Return Values

If an error condition occurs, it returns the error code, otherwise it returns A0ErrOk. Possible values are as follows:
Error CodeDescription
A0Err...Some error occurred.
A0ErrOkSuccessful completion.

See Also

a0FReceive() a0FSend() a0IFSend() a0UseFormats() a0NewMapFormat() a0NewFunctionFormat() a0IReceive() a0ISend() a0IReceiveBuffer() a0WaitRequest() a0TestRequest()