callback_SetSimpleData()

Description

This async function is called when a write request is closed.

Syntax

callback_SetSimpleData(writeId, succeeded)
ArgumentDescription

writeId

The id of this write request. This is an Integer.

succeeded

Boolean that tells us if the request was successful or not.

Returns

N/A

Example Implementation

function callback_SetSimpleData(writeId, succeeded){
	
	//if write id is -1, the write failed, 
	show_message("The write id: "+string(writeId)+" succeeded?? "+string(succeeded))

}

Last updated