chat_manager::finish_processing_data_frames

Indicates that the app has finished processing data frames, and that Game Chat 2 can release associated resources.

Syntax

void finish_processing_data_frames(  
    game_chat_data_frame_array dataFrames  
)  

Parameters

dataFrames   _In_
Type: game_chat_data_frame_array

An array of game_chat_data_frame structure pointers that represents the processed data frames.

Return value

Type: void

None.

Remarks

This method indicates that the app has finished processing the data frames queued by Game Chat 2 when the app invoked the chat_manager::start_processing_data_frames method, transporting the data frames to their appropriate remote app instances. This method indicates that Game Chat 2 can release the resources associated with the processed data frames. Every call to the chat_manager::start_processing_data_frames method must have a corresponding call to this method. For more information about processing data frames, see Using the Game Chat 2 C++ API.

Requirements

Header: GameChat2.h

Supported platforms: Windows, Xbox One family consoles and Xbox Series consoles

See also

chat_manager::start_processing_data_frames
chat_manager