@@ -205,6 +205,7 @@ namespace Akka.Persistence
205205 public DiscardConfigurator() { }
206206 public Akka.Persistence.IStashOverflowStrategy Create(Akka.Configuration.Config config) { }
207207 }
208+ [System.Runtime.CompilerServices.NullableAttribute(0)]
208209 public class DiscardToDeadLetterStrategy : Akka.Persistence.IStashOverflowStrategy
209210 {
210211 public static Akka.Persistence.DiscardToDeadLetterStrategy Instance { get; }
@@ -444,34 +445,48 @@ namespace Akka.Persistence
444445 protected PersistentActor() { }
445446 protected override bool Receive(object message) { }
446447 }
448+ [System.Runtime.CompilerServices.NullableAttribute(0)]
447449 public abstract class ReceivePersistentActor : Akka.Persistence.UntypedPersistentActor, Akka.Actor.Internal.IInitializableActor
448450 {
449451 protected ReceivePersistentActor() { }
450452 protected void Become(System.Action configure) { }
451453 protected void BecomeStacked(System.Action configure) { }
452- protected void Command<T>(System.Action<T> handler, System.Predicate<T> shouldHandle = null) { }
453- protected void Command<T>(System.Predicate<T> shouldHandle, System.Action<T> handler) { }
454- protected void Command(System.Type messageType, System.Action<object> handler, System.Predicate<object> shouldHandle = null) { }
454+ protected void Command<[System.Runtime.CompilerServices.NullableAttribute(2)] T>(System.Action<T> handler, [System.Runtime.CompilerServices.NullableAttribute(new byte[] {
455+ 2,
456+ 1})] System.Predicate<T> shouldHandle = null) { }
457+ protected void Command<[System.Runtime.CompilerServices.NullableAttribute(2)] T>(System.Predicate<T> shouldHandle, System.Action<T> handler) { }
458+ protected void Command(System.Type messageType, System.Action<object> handler, [System.Runtime.CompilerServices.NullableAttribute(new byte[] {
459+ 2,
460+ 1})] System.Predicate<object> shouldHandle = null) { }
455461 protected void Command(System.Type messageType, System.Predicate<object> shouldHandle, System.Action<object> handler) { }
456- protected void Command<T>(System.Func<T, bool> handler) { }
462+ protected void Command<[System.Runtime.CompilerServices.NullableAttribute(2)] T>(System.Func<T, bool> handler) { }
457463 protected void Command(System.Type messageType, System.Func<object, bool> handler) { }
458464 protected void Command(System.Action<object> handler) { }
459465 protected void CommandAny(System.Action<object> handler) { }
460466 protected void CommandAnyAsync(System.Func<object, System.Threading.Tasks.Task> handler) { }
461- protected void CommandAsync<T>(System.Func<T, System.Threading.Tasks.Task> handler, System.Predicate<T> shouldHandle = null) { }
462- protected void CommandAsync<T>(System.Predicate<T> shouldHandle, System.Func<T, System.Threading.Tasks.Task> handler) { }
463- protected void CommandAsync(System.Type messageType, System.Func<object, System.Threading.Tasks.Task> handler, System.Predicate<object> shouldHandle = null) { }
467+ protected void CommandAsync<[System.Runtime.CompilerServices.NullableAttribute(2)] T>(System.Func<T, System.Threading.Tasks.Task> handler, [System.Runtime.CompilerServices.NullableAttribute(new byte[] {
468+ 2,
469+ 1})] System.Predicate<T> shouldHandle = null) { }
470+ protected void CommandAsync<[System.Runtime.CompilerServices.NullableAttribute(2)] T>(System.Predicate<T> shouldHandle, System.Func<T, System.Threading.Tasks.Task> handler) { }
471+ protected void CommandAsync(System.Type messageType, System.Func<object, System.Threading.Tasks.Task> handler, [System.Runtime.CompilerServices.NullableAttribute(new byte[] {
472+ 2,
473+ 1})] System.Predicate<object> shouldHandle = null) { }
464474 protected void CommandAsync(System.Type messageType, System.Predicate<object> shouldHandle, System.Func<object, System.Threading.Tasks.Task> handler) { }
465475 protected virtual void OnCommand(object message) { }
466476 protected virtual void OnRecover(object message) { }
467- protected void Recover<T>(System.Action<T> handler, System.Predicate<T> shouldHandle = null) { }
468- protected void Recover<T>(System.Predicate<T> shouldHandle, System.Action<T> handler) { }
469- protected void Recover(System.Type messageType, System.Action<object> handler, System.Predicate<object> shouldHandle = null) { }
477+ protected void Recover<[System.Runtime.CompilerServices.NullableAttribute(2)] T>(System.Action<T> handler, [System.Runtime.CompilerServices.NullableAttribute(new byte[] {
478+ 2,
479+ 1})] System.Predicate<T> shouldHandle = null) { }
480+ protected void Recover<[System.Runtime.CompilerServices.NullableAttribute(2)] T>(System.Predicate<T> shouldHandle, System.Action<T> handler) { }
481+ protected void Recover(System.Type messageType, System.Action<object> handler, [System.Runtime.CompilerServices.NullableAttribute(new byte[] {
482+ 2,
483+ 1})] System.Predicate<object> shouldHandle = null) { }
470484 protected void Recover(System.Type messageType, System.Predicate<object> shouldHandle, System.Action<object> handler) { }
471- protected void Recover<T>(System.Func<T, bool> handler) { }
485+ protected void Recover<[System.Runtime.CompilerServices.NullableAttribute(2)] T>(System.Func<T, bool> handler) { }
472486 protected void Recover(System.Type messageType, System.Func<object, bool> handler) { }
473487 protected void RecoverAny(System.Action<object> handler) { }
474488 }
489+ [System.Runtime.CompilerServices.NullableAttribute(0)]
475490 public sealed class Recovery
476491 {
477492 public Recovery() { }
@@ -486,6 +501,7 @@ namespace Akka.Persistence
486501 }
487502 public sealed class RecoveryCompleted
488503 {
504+ [System.Runtime.CompilerServices.NullableAttribute(1)]
489505 public static readonly Akka.Persistence.RecoveryCompleted Instance;
490506 public override bool Equals(object obj) { }
491507 public override int GetHashCode() { }
@@ -504,10 +520,11 @@ namespace Akka.Persistence
504520 public RecoveryTick(bool snapshot) { }
505521 public bool Snapshot { get; }
506522 }
523+ [System.Runtime.CompilerServices.NullableAttribute(0)]
507524 public sealed class RecoveryTimedOutException : Akka.Actor.AkkaException
508525 {
509526 public RecoveryTimedOutException() { }
510- public RecoveryTimedOutException(string message, System.Exception cause = null) { }
527+ public RecoveryTimedOutException(string message, [System.Runtime.CompilerServices.NullableAttribute(2)] System.Exception cause = null) { }
511528 public RecoveryTimedOutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
512529 }
513530 public sealed class ReplayMessages : Akka.Actor.INoSerializationVerificationNeeded, Akka.Persistence.IJournalMessage, Akka.Persistence.IJournalRequest, Akka.Persistence.IPersistenceMessage, System.IEquatable<Akka.Persistence.ReplayMessages>
@@ -541,6 +558,7 @@ namespace Akka.Persistence
541558 public override int GetHashCode() { }
542559 public override string ToString() { }
543560 }
561+ [System.Runtime.CompilerServices.NullableAttribute(0)]
544562 public sealed class ReplyToStrategy : Akka.Persistence.IStashOverflowStrategy
545563 {
546564 public ReplyToStrategy(object response) { }
@@ -638,6 +656,7 @@ namespace Akka.Persistence
638656 public ThrowExceptionConfigurator() { }
639657 public Akka.Persistence.IStashOverflowStrategy Create(Akka.Configuration.Config config) { }
640658 }
659+ [System.Runtime.CompilerServices.NullableAttribute(0)]
641660 public class ThrowOverflowExceptionStrategy : Akka.Persistence.IStashOverflowStrategy
642661 {
643662 public static Akka.Persistence.ThrowOverflowExceptionStrategy Instance { get; }
@@ -662,6 +681,7 @@ namespace Akka.Persistence
662681 public override int GetHashCode() { }
663682 public override string ToString() { }
664683 }
684+ [System.Runtime.CompilerServices.NullableAttribute(0)]
665685 public abstract class UntypedPersistentActor : Akka.Persistence.Eventsourced
666686 {
667687 protected UntypedPersistentActor() { }
0 commit comments