v0.0.520
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 4m7s

This commit is contained in:
2024-10-05 01:02:25 +02:00
parent dc6cb274ee
commit 9f85a243e8
4 changed files with 38 additions and 27 deletions

View File

@@ -6,9 +6,11 @@ import (
)
type PrePingMeta struct {
Context context.Context
}
type PreTxBeginMeta struct {
Context context.Context
ConstructorContext context.Context
}
@@ -21,22 +23,27 @@ type PreTxRollbackMeta struct {
}
type PreQueryMeta struct {
Context context.Context
TransactionConstructorContext context.Context
}
type PreExecMeta struct {
Context context.Context
TransactionConstructorContext context.Context
}
type PostPingMeta struct {
Init time.Time
Start time.Time
End time.Time
Context context.Context
Init time.Time
Start time.Time
End time.Time
}
type PostTxBeginMeta struct {
ConstructorContext context.Context
Init time.Time
Start time.Time
End time.Time
Context context.Context
Init time.Time
Start time.Time
End time.Time
}
type PostTxCommitMeta struct {
@@ -58,15 +65,19 @@ type PostTxRollbackMeta struct {
}
type PostQueryMeta struct {
Init time.Time
Start time.Time
End time.Time
Context context.Context
TransactionConstructorContext context.Context
Init time.Time
Start time.Time
End time.Time
}
type PostExecMeta struct {
Init time.Time
Start time.Time
End time.Time
Context context.Context
TransactionConstructorContext context.Context
Init time.Time
Start time.Time
End time.Time
}
type Listener interface {