Skip to content

Commit b61c2f0

Browse files
committed
Added more links
1 parent f3f0d75 commit b61c2f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -372,9 +372,9 @@ public final class JoeActor extends StatefulActor<State> {
372372
This `configure` method is overridden from `StatefulActor` and is used to configure the actor's behavior.
373373

374374
* `name("JoeActor")`: Specifies the name of the actor. Note that the Actor name has the same name as the service declared
375-
in protobuf. This is not a coincidence, the Spawn proxy uses the protobuf metadata to map actors and
376-
their actions and therefore these names should correctly reflect this behavior.
377-
* `channel("test.channel")`: Specifies the channel the actor listens to.
375+
in protobuf. This is not a coincidence, the Spawn proxy uses the protobuf metadata to map **actors** and
376+
their **actions** and therefore these names should correctly reflect this behavior.
377+
* `channel("test.channel")`: Specifies the channel the actor listens to. See [Broadcast](#broadcast) section below.
378378
* `action("SetLanguage", ActionBindings.of(Request.class, this::setLanguage))`: Binds the `SetLanguage` action to the `setLanguage` method,
379379
which takes a `Request` message as input.
380380
Where the second parameter of `ActionBindings.of(type, lambda)` method is a lambda.

0 commit comments

Comments
 (0)