Skip to content

Commit

Permalink
Rename RepointableRef > IRepointableRef
Browse files Browse the repository at this point in the history
  • Loading branch information
HCanber committed Mar 31, 2015
1 parent 8bc5acd commit 71d5fda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/Akka.TestKit/TestKitBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private TestKitBase(TestKitAssertions assertions, ActorSystem system, Config con
//Wait for the testactor to start
AwaitCondition(() =>
{
var repRef = testActor as RepointableRef;
var repRef = testActor as IRepointableRef;
return repRef == null || repRef.IsStarted;
}, TimeSpan.FromSeconds(5), TimeSpan.FromMilliseconds(10));

Expand Down
2 changes: 1 addition & 1 deletion src/core/Akka/Actor/ActorRef.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ internal interface ILocalRef : IActorRefScope { }
/// actor refs will have the same behavior.
/// INTERNAL
/// </summary>
public interface RepointableRef : IActorRefScope
public interface IRepointableRef : IActorRefScope
{
bool IsStarted { get; }
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/Akka/Actor/RepointableActorRef.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Akka.Actor
{
public class RepointableActorRef : ActorRefWithCell, RepointableRef
public class RepointableActorRef : ActorRefWithCell, IRepointableRef
{
private volatile Cell _underlying_DoNotCallMeDirectly;
private volatile Cell _lookup_DoNotCallMeDirectly;
Expand Down

0 comments on commit 71d5fda

Please sign in to comment.