Datasnap.DSProxy.TDSAdminClient.NotifyCallback
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 */;
Eigenschaften
Typ | Sichtbarkeit | Quelle | Unit | Übergeordnet |
---|---|---|---|---|
function | public | Datasnap.DSProxy.pas Datasnap.DSProxy.hpp |
Datasnap.DSProxy | TDSAdminClient |
Beschreibung
Führt den Befehl DSAdmin.NotifyCallback
aus.
Der Befehl DSAdmin.NotifyCallback
wird über die in TDBXConnection angegebene Verbindung ausgeführt, die von dem Klassenkonstruktor Create festgelegt wird.
Hinweis: Die Überladung mit dem Parameter
ChannelName
ist veraltet. Verwenden Sie stattdessen die Überladung ohneChannelName
.