Esempio n. 1
0
        internal static StuckState FromBytes(BinaryReader br)
        {
            StuckState state = new StuckState();

            // Note: the type of command (an Enum serialized as Int32) was already read by caller
            state.Read(br);

            return(state);
        }
Esempio n. 2
0
 public StuckAction(IReliableStateManager stateManager, IStatefulServicePartition partition, StuckState state, TimeSpan requestTimeout, TimeSpan operationTimeout)
     : base(stateManager, partition, state, requestTimeout, operationTimeout)
 {
 }