We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65e51cc commit 1da0974Copy full SHA for 1da0974
2 files changed
src/Vertex.Transaction/Options/VertexDtxOptions.cs
@@ -1,7 +1,11 @@
1
-namespace Vertex.Transaction.Options
+using Orleans;
2
+
3
+namespace Vertex.Transaction.Options
4
{
5
+ [GenerateSerializer]
6
public class VertexDtxOptions
7
8
+ [Id(0)]
9
public int RetainedTxEvents { get; set; } = 30;
10
}
11
src/Vertex.Transaction/Options/VertexTxOptions.cs
@@ -1,10 +1,14 @@
public class VertexTxOptions
/// <summary>
/// Transaction timeout time(default is 30s)
/// </summary>
12
public int TxSecondsTimeout { get; set; } = 30;
13
14
0 commit comments