Datasnap.DSProxy.TDSAdminClient.NotifyObject

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Datasnap.DSProxy.pas
Datasnap.DSProxy.hpp
Unit: Datasnap.DSProxy
Parent: TDSAdminClient

Delphi

function NotifyObject(ClientId: string; CallbackId: string; Msg: TObject; out Response: TObject): Boolean; overload;
function NotifyObject(ChannelName: string; ClientId: string; CallbackId: string; Msg: TObject; out Response: TObject): Boolean; overload; deprecated 'ChannelName is no longer required';

C++

bool __fastcall NotifyObject(System::UnicodeString ClientId, System::UnicodeString CallbackId, System::TObject* Msg, /* out */ System::TObject* &Response)/* overload */;
bool __fastcall NotifyObject _DEPRECATED_ATTRIBUTE1("ChannelName is no longer required") (System::UnicodeString ChannelName, System::UnicodeString ClientId, System::UnicodeString CallbackId, System::TObject* Msg, /* out */ System::TObject* &Response)/* overload */;

Description

Executes the DSAdmin.NotifyObject command.

The DSAdmin.NotifyObject 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 no ChannelName instead.

See Also