public ServiceMachine() { core = new ServiceMachineCore(); synchronizationContext = new MachineSynchronizationContext(Id); }
void SaveInitialPayload() { core = (ServiceMachineCore)Payload; }
void AddServiceMachineCore(ServiceMachineCore core) { InitializeAppMachine(CreateMachine(typeof(ServiceMachine), core)); }
internal StateTriggeredActionSubscriber(ServiceMachineCore outer, TableClientState triggerState, Func <Task> asyncAction) { this.outer = outer; this.triggerState = triggerState; this.asyncAction = asyncAction; }