Client

Callback

Function to call a callback from the same side

function HRLib.Callback(name: string, ...: any?): any?

Parameters description

  • name - callback's name

  • ... - the callback function's parameters if it's function, otherwise it's not used

ServerCallback

Function to call server sided callback

function HRLib.ServerCallback(name: string, ...: any?): any?

Parameters description

  • name - callback's name

  • ... - the callback function's parameters if it's function, otherwise it's not used

Last updated