What's Changed
- Few housekeeping tasks by @Kritner in #51
- Allow returning NotStarted from GetWorkStatus by @hendrikdevloed in #57
- [Breaking change] Removes the
IGrainWithGuidKey
constraint fromISyncWorker
. by @Kritner in #55
Previously defined:
public interface ISyncWorker<in TRequest, TResult> : IGrainWithGuidKey
Is now defined as:
public interface ISyncWorker<in TRequest, TResult> : IGrain
See linked PR for additional details
Previous abstract method for implementation was defined as:
protected abstract Task<TResult> PerformWork(TRequest request);
Now defined as:
protected abstract Task<TResult> PerformWork(
TRequest request, GrainCancellationToken grainCancellationToken);
See associated PR for additional details
New Contributors
- @hendrikdevloed made their first contribution in #57
Full Changelog: v8.0.3...v8.1.12