Datasnap.DSProxy.TDSAdminClient.NotifyCallback
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: Datasnap.DSProxy.pas Datasnap.DSProxy.hpp
| |
Unit: Datasnap.DSProxy | |
Parent: TDSAdminClient |
Delphi
function NotifyCallback(ClientId: string; CallbackId: string; Msg: TJSONValue; out Response: TJSONValue): Boolean; overload;
function NotifyCallback(ChannelName: string; ClientId: string; CallbackId: string; Msg: TJSONValue; out Response: TJSONValue): Boolean; overload; deprecated 'ChannelName is no longer required';
C++
bool __fastcall NotifyCallback(System::UnicodeString ClientId, System::UnicodeString CallbackId, System::Json::TJSONValue* Msg, /* out */ System::Json::TJSONValue* &Response)/* overload */;
bool __fastcall NotifyCallback _DEPRECATED_ATTRIBUTE1("ChannelName is no longer required") (System::UnicodeString ChannelName, System::UnicodeString ClientId, System::UnicodeString CallbackId, System::Json::TJSONValue* Msg, /* out */ System::Json::TJSONValue* &Response)/* overload */;
Description
Executes the DSAdmin.NotifyCallback
command.
The DSAdmin.NotifyCallback
command is executed using the TDBXConnection set by the class constructor Create.
Note: The overload having
ChannelName
as parameter is deprecated. Use the overload with noChannelName
instead.