πŸš€Get Started

  • Define the messages that you want the given actor should handle using Google Protocol Buffers.

  • Make use Buf or protoc to generate the go code.

  • Implement the Actorinterface to define the given actor.

Example

Messages definition

syntax = "proto3";

package hellopb;

message SayHello {}

message SayHi {}

Generate Code

We use Buf to generate the golang code. You can check the examples repo for more information

Actor Implementation

Complete Example

More Examples

See Examples

Last updated