nn::rdt::CTR::Receiver::Process Member Function

Syntax

nn::Result Process(
     void
);

Arguments

None.

Return Values

Returns the result of a series of communication operations. Specifically, the following values may be returned: ResultSuccess, ResultNotInitialized, ResultResetReceived, as well as other result codes that can be returned by the UDS API.

Description

Proceeds with communication. The actual communication takes place within this function.

Applications must call this function at intervals of at least once every game frame. In scenarios where real data is sent and received, you can sometimes improve the sending/receiving performance by calling this function several times in a row. Although a single call to this function will only receive about 1400 bytes at most, you can receive more data by calling it multiple times. See the basic sample demo and other demos for more specific details about settings. Do not call other member functions (such as Receive) while this function is running. In that case, behavior is not guaranteed. State transitions of Receiver instances are also handled within this function.

Revision History

2010/06/14
Initial version.

CONFIDENTIAL