Getting started referred to a package name not present in quickstart (#28549)
* Getting started referred to a package name not present in quickstart Techhub zip has com.example and g8 template defaults to com.example so let's refer to that instead * Missing logger ops in one Scala example snippet
This commit is contained in:
parent
84e88bff02
commit
289ca787a1
4 changed files with 4 additions and 4 deletions
|
|
@ -6,7 +6,6 @@ package typed.tutorial_3
|
|||
|
||||
import akka.actor.typed.PostStop
|
||||
import akka.actor.typed.Signal
|
||||
import akka.actor.typed.scaladsl.LoggerOps
|
||||
|
||||
object DeviceInProgress1 {
|
||||
|
||||
|
|
@ -30,6 +29,7 @@ object DeviceInProgress2 {
|
|||
import akka.actor.typed.scaladsl.AbstractBehavior
|
||||
import akka.actor.typed.scaladsl.ActorContext
|
||||
import akka.actor.typed.scaladsl.Behaviors
|
||||
import akka.actor.typed.scaladsl.LoggerOps
|
||||
|
||||
object Device {
|
||||
def apply(groupId: String, deviceId: String): Behavior[Command] =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue