internal void OnCmdRequestInternal(Cmd.ReceivedRequest request)
 {
     GameObjectDelegates.DispatchWithErrorHandling(new Cmd.RequestResponder(entityManager, entity, request), cmdDelegates, logger);
 }
 internal void OnCmdResponseInternal(Cmd.ReceivedResponse response)
 {
     GameObjectDelegates.DispatchWithErrorHandling(response, cmdDelegates, logger);
 }
示例#3
0
 public void OnSecondEventEvent(global::Improbable.Gdk.Tests.NonblittableTypes.SecondEventPayload payload)
 {
     GameObjectDelegates.DispatchWithErrorHandling(payload, SecondEventDelegates, logDispatcher);
 }
 public void OnEvtEvent(global::Improbable.Gdk.Tests.ComponentsWithNoFields.Empty payload)
 {
     GameObjectDelegates.DispatchWithErrorHandling(payload, EvtDelegates, LogDispatcher);
 }
示例#5
0
 internal void OnDeleteEntityResponseInternal(DeleteEntity.ReceivedResponse receivedResponse)
 {
     GameObjectDelegates.DispatchWithErrorHandling(receivedResponse, deleteEntityDelegates,
                                                   logDispatcher);
 }
示例#6
0
 internal void OnEntityQueryResponseInternal(EntityQuery.ReceivedResponse receivedResponse)
 {
     GameObjectDelegates.DispatchWithErrorHandling(receivedResponse, entityQueryDelegates,
                                                   logDispatcher);
 }
示例#7
0
 internal void OnReserveEntityIdsResponseInternal(ReserveEntityIds.ReceivedResponse receivedResponse)
 {
     GameObjectDelegates.DispatchWithErrorHandling(receivedResponse, reserveEntityIdsDelegates,
                                                   logDispatcher);
 }
示例#8
0
 public void OnFirstEventEvent(global::Improbable.Gdk.Tests.BlittableTypes.FirstEventPayload payload)
 {
     GameObjectDelegates.DispatchWithErrorHandling(payload, FirstEventDelegates, LogDispatcher);
 }
示例#9
0
 public void OnMyEventEvent(global::Improbable.Gdk.Tests.AlternateSchemaSyntax.RandomDataType payload)
 {
     GameObjectDelegates.DispatchWithErrorHandling(payload, MyEventDelegates, LogDispatcher);
 }
 internal void OnSecondCommandResponseInternal(SecondCommand.ReceivedResponse response)
 {
     GameObjectDelegates.DispatchWithErrorHandling(response, secondCommandDelegates, logger);
 }
 internal void OnSecondCommandRequestInternal(SecondCommand.ReceivedRequest request)
 {
     GameObjectDelegates.DispatchWithErrorHandling(new SecondCommand.RequestResponder(entityManager, entity, request), secondCommandDelegates, logger);
 }