8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:03:02 +01:00

Document transaction usage restriction.

This commit is contained in:
Adriano dos Santos Fernandes 2022-05-12 08:58:07 -03:00
parent 3056a1c302
commit 2f9c1f625f

View File

@ -1700,11 +1700,14 @@ interface ReplicatedSession : PluginBase
interface ProfilerPlugin : PluginBase
{
// The transaction should not be stored for later usage after the method returns.
void init(Status status, Attachment attachment, Transaction transaction);
// The transaction should not be stored for later usage after the method returns.
ProfilerSession startSession(Status status, Transaction transaction, const string description,
ISC_TIMESTAMP_TZ timestamp);
// The transaction should not be stored for later usage after the method returns.
void flush(Status status, Transaction transaction);
}