Skip to content

Commit

Permalink
Remove TypedActor (#6437)
Browse files Browse the repository at this point in the history
* Remove TypedActor

* Update API  Verify
  • Loading branch information
Arkatufus committed Feb 24, 2023
1 parent 30e762c commit 0e75c68
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 80 deletions.
Expand Up @@ -1080,10 +1080,6 @@ namespace Akka.Actor
T CreateExtension(Akka.Actor.ExtendedActorSystem system);
T Get(Akka.Actor.ActorSystem system);
}
public interface IHandle<in TMessage>
{
void Handle(TMessage message);
}
public interface IInboxable : Akka.Actor.ICanWatch
{
Akka.Actor.IActorRef Receiver { get; }
Expand Down Expand Up @@ -1823,12 +1819,6 @@ namespace Akka.Actor
public TerminatedProps() { }
public override Akka.Actor.ActorBase NewActor() { }
}
[System.ObsoleteAttribute("TypedActor in its current shape will be removed in v1.5")]
public abstract class TypedActor : Akka.Actor.ActorBase
{
protected TypedActor() { }
protected virtual bool Receive(object message) { }
}
[Akka.Annotations.InternalApiAttribute()]
public class UnstartedCell : Akka.Actor.ICell
{
Expand Down
Expand Up @@ -1082,10 +1082,6 @@ namespace Akka.Actor
T CreateExtension(Akka.Actor.ExtendedActorSystem system);
T Get(Akka.Actor.ActorSystem system);
}
public interface IHandle<in TMessage>
{
void Handle(TMessage message);
}
public interface IInboxable : Akka.Actor.ICanWatch
{
Akka.Actor.IActorRef Receiver { get; }
Expand Down Expand Up @@ -1825,12 +1821,6 @@ namespace Akka.Actor
public TerminatedProps() { }
public override Akka.Actor.ActorBase NewActor() { }
}
[System.ObsoleteAttribute("TypedActor in its current shape will be removed in v1.5")]
public abstract class TypedActor : Akka.Actor.ActorBase
{
protected TypedActor() { }
protected virtual bool Receive(object message) { }
}
[Akka.Annotations.InternalApiAttribute()]
public class UnstartedCell : Akka.Actor.ICell
{
Expand Down
Expand Up @@ -1080,10 +1080,6 @@ namespace Akka.Actor
T CreateExtension(Akka.Actor.ExtendedActorSystem system);
T Get(Akka.Actor.ActorSystem system);
}
public interface IHandle<in TMessage>
{
void Handle(TMessage message);
}
public interface IInboxable : Akka.Actor.ICanWatch
{
Akka.Actor.IActorRef Receiver { get; }
Expand Down Expand Up @@ -1823,12 +1819,6 @@ namespace Akka.Actor
public TerminatedProps() { }
public override Akka.Actor.ActorBase NewActor() { }
}
[System.ObsoleteAttribute("TypedActor in its current shape will be removed in v1.5")]
public abstract class TypedActor : Akka.Actor.ActorBase
{
protected TypedActor() { }
protected virtual bool Receive(object message) { }
}
[Akka.Annotations.InternalApiAttribute()]
public class UnstartedCell : Akka.Actor.ICell
{
Expand Down
50 changes: 0 additions & 50 deletions src/core/Akka/Actor/TypedActor.cs

This file was deleted.

0 comments on commit 0e75c68

Please sign in to comment.