/// <summary> /// Loads an implementation of BatchStep into the collection. /// </summary> /// <param name="step">A BatchStep object.</param> /// <returns>A reference to the collection, for a fluent API.</returns> public ShardSetBatch Add(BatchStep <object> step) { _processes.Add(step); return(this); }
/// <summary> /// Loads an implementation of BatchStep into the collection. /// </summary> /// <param name="step">A BatchStep object.</param> /// <returns>A reference to the collection, for a fluent API.</returns> public ShardBatch <TResult> Add(BatchStep <TResult> step) { _processes.Add(step); return(this); }
public bool Remove(BatchStep <TResult> item) => _processes.Remove(item);
/// <summary> /// Loads an implementation of BatchStep into the collection. /// </summary> /// <param name="step">A BatchStep object.</param> /// <returns>A reference to the collection, for a fluent API.</returns> public DatabaseBatch <TResult> Add(BatchStep <TResult> step) { _processes.Add(step); return(this); }