mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-15 04:08:02 -04:00
5e4b3bf490
* One-off query support (#49) * SpacetimeDBURI argument in place of host and ssl enabled bool (#52) * SpacetimeDBURI argument in place of host and ssl enabled bool * Small cleanup --------- Co-authored-by: John Detter <no-reply@boppygames.gg> * Add support for client address; re-run `spacetime generate` for quickstart client (#54) * README.md and License.txt updates (#53) * Update README.md * Add license.txt * Rename * Add LICENSE.txt with proper case --------- Co-authored-by: Derek Brinkmann <dbrinkmann@clockworklabs.io> * Add support for client address; re-run `spacetime generate` for quickstart client Re: https://github.com/clockworklabs/SpacetimeDB/pull/299 --------- Co-authored-by: dbrinkmanncw <109690865+dbrinkmanncw@users.noreply.github.com> Co-authored-by: Derek Brinkmann <dbrinkmann@clockworklabs.io> * Making Quickstart Work Again (#57) * Packaged nuget package, quickstart is now working again * Reset DBNAME --------- Co-authored-by: John Detter <no-reply@boppygames.gg> * OnUnhandledReducerError (#31) Co-authored-by: Steve <steve@codefics.com> Co-authored-by: Boppy <no-reply@boppygames.gg> --------- Co-authored-by: james gilles <jameshgilles@gmail.com> Co-authored-by: dbrinkmanncw <109690865+dbrinkmanncw@users.noreply.github.com> Co-authored-by: John Detter <no-reply@boppygames.gg> Co-authored-by: Phoebe Goldman <phoebe@goldman-tribe.org> Co-authored-by: Derek Brinkmann <dbrinkmann@clockworklabs.io> Co-authored-by: SteveBoytsun <100594800+SteveBoytsun@users.noreply.github.com> Co-authored-by: Steve <steve@codefics.com>
28 lines
1.0 KiB
C#
28 lines
1.0 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SpacetimeDB
|
|
{
|
|
public partial class ReducerEventBase
|
|
{
|
|
public string ReducerName { get; private set; }
|
|
public ulong Timestamp { get; private set; }
|
|
public SpacetimeDB.Identity Identity { get; private set; }
|
|
public SpacetimeDB.Address? CallerAddress { get; private set; }
|
|
public string ErrMessage { get; private set; }
|
|
public ClientApi.Event.Types.Status Status { get; private set; }
|
|
protected object Args;
|
|
|
|
public ReducerEventBase(string reducerName, ulong timestamp, SpacetimeDB.Identity identity, SpacetimeDB.Address? callerAddress, string errMessage, ClientApi.Event.Types.Status status, object args)
|
|
{
|
|
ReducerName = reducerName;
|
|
Timestamp = timestamp;
|
|
Identity = identity;
|
|
CallerAddress = callerAddress;
|
|
ErrMessage = errMessage;
|
|
Status = status;
|
|
Args = args;
|
|
}
|
|
}
|
|
}
|