Akka get context with Behaviors.withTimers

717 Views Asked by At

Using Behaviors.withTimers any idea how can we obtain the context, to use the context.log of Akka?

Normally I use when I define the Behavior with

Behaviors.setup { context =>

But with

Behaviors.withTimers

It seems it cannot be combined.

Any suggestion?

2

There are 2 best solutions below

1
On

With this:

Behaviors.setup { context =>
      Behaviors.withTimers { timers => 
         context.log.debug("")
   }
}

should work.

0
On

Adding the type works

Behaviors.setup[T] { context =>
      Behaviors.withTimers { timers => 
         context.log.debug("")
   }
}