Assembly: libdb_dotnet53 (in libdb_dotnet53.dll) Version: 5.3.28.0
Syntax
C# |
---|
public void SendMessage( DatabaseEntry[] msg ) |
Visual Basic (Declaration) |
---|
Public Sub SendMessage ( _ msg As DatabaseEntry() _ ) |
Visual C++ |
---|
public: void SendMessage( array<DatabaseEntry^>^ msg ) |
Parameters
- msg
- Type: array<
BerkeleyDB..::.DatabaseEntry
>[]()[]
An array of DatabaseEntry objects. Any flags for the DatabaseEntry objects are ignored.
Remarks
To block while waiting for a response from a remote site, use SendRequest(array<DatabaseEntry>[]()[], UInt32) instead of this method.
The sent message is received and handled at remote sites using a message dispatch callback, which is configured using RepMessageDispatch. Note that this method may be used within the the message dispatch callback on the remote site to send a reply or acknowledgement for messages that it receives and is handling.
This method may be used on channels opened to any destination. See RepMgrChannel(Int32) for a list of potential destinations.