Skip to content

Commit

Permalink
Fixes #218 (#220)
Browse files Browse the repository at this point in the history
* Fixes #218

* Lower log level.
  • Loading branch information
johnou authored and JoeHegarty committed Feb 20, 2017
1 parent 9ca4806 commit 1a3784a
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ protected Task<Void> clearState()

/**
* Registers a timer for the current actor. The timer is automatically disposed ondeactivation.
* The timer calls will keep the actor active. Timer calls are serialized according to the actor policy.
* The timer calls will not keep the actor active. Timer calls are serialized according to the actor policy.
* Each stateless actor activation has it's on set of timers.
*
* @param futureCallable a callable that returns a Task
Expand All @@ -184,7 +184,7 @@ protected Registration registerTimer(Callable<Task<?>> futureCallable, long dueT

/**
* Registers a single shot timer for the current actor. The timer is automatically disposed on deactivation.
* The timer calls will keep the actor active. Timer calls are serialized according to the actor policy.
* The timer calls will not keep the actor active. Timer calls are serialized according to the actor policy.
* Each stateless actor activation has it's on set of timers.
*
* @param futureCallable a callable that returns a Task
Expand Down Expand Up @@ -240,8 +240,6 @@ protected String runtimeIdentity()
*
* @return unique identity string
*/

@Deprecated
protected String actorIdentity()
{
return reference.id.toString();
Expand Down

0 comments on commit 1a3784a

Please sign in to comment.