Skip to content

NoOpCheckpointer

class

Namespace: Orleans.Streaming.EventHubs.Testing

NoOpCheckpointer is used in EventDataGeneratorStreamProvider ecosystem to replace the default Checkpointer which requires a back end storage. In EventHubDataGeneratorStreamProvider, it is generating EventData on the fly when receiver pull messages from the queue, which means it doesn't support recoverable stream, hence check pointing won't bring much value there. So a checkpointer with no ops should be enough.
public class NoOpCheckpointer : IStreamQueueCheckpointer<string>

Constructors

Properties

Methods

  • Load Loads the checkpoint.
  • Update(string, DateTime) Ignores a checkpoint update because generated-event streams do not persist checkpoints.

Fields

  • Instance Gets the shared checkpointer instance.