-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
execute gen-client-api.sh against centril/websocket-light
support TransactionUpdateLight support SetReducerFlags
- Loading branch information
Showing
14 changed files
with
285 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace SpacetimeDB | ||
{ | ||
public enum CallReducerFlags : byte | ||
{ | ||
// This is the default. | ||
FullUpdate = 0, | ||
NoSuccessNotify = 1, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// THIS FILE IS AUTOMATICALLY GENERATED BY SPACETIMEDB. EDITS TO THIS FILE | ||
// WILL NOT BE SAVED. MODIFY TABLES IN RUST INSTEAD. | ||
// <auto-generated /> | ||
|
||
#nullable enable | ||
|
||
using System; | ||
using SpacetimeDB; | ||
using System.Collections.Generic; | ||
using System.Runtime.Serialization; | ||
|
||
namespace SpacetimeDB.ClientApi | ||
{ | ||
[SpacetimeDB.Type] | ||
[DataContract] | ||
public partial class TransactionUpdateLight | ||
{ | ||
[DataMember(Name = "request_id")] | ||
public uint RequestId; | ||
[DataMember(Name = "update")] | ||
public SpacetimeDB.ClientApi.DatabaseUpdate Update; | ||
|
||
public TransactionUpdateLight( | ||
uint RequestId, | ||
SpacetimeDB.ClientApi.DatabaseUpdate Update | ||
) | ||
{ | ||
this.RequestId = RequestId; | ||
this.Update = Update; | ||
} | ||
|
||
public TransactionUpdateLight() | ||
{ | ||
this.Update = new(); | ||
} | ||
|
||
} | ||
} |
Oops, something went wrong.