func main() { props := actor.FromProducer(NewBecomeActor) pid := actor.Spawn(props) pid.Tell(Hello{Who: "Roger"}) pid.Tell(Hello{Who: "Roger"}) console.ReadLine() }
func Start(host string, options ...RemotingOption) { lis, err := net.Listen("tcp", host) if err != nil { log.Fatalf("failed to listen: %v", err) } config := defaultRemoteConfig() for _, option := range options { option(config) } host = lis.Addr().String() log.Printf("Host is %v", host) actor.ProcessRegistry.RegisterHostResolver(remoteHandler) actor.ProcessRegistry.Host = host props := actor. FromProducer(newEndpointManager(config)). WithMailbox(actor.NewBoundedMailbox(1000, 100000)) endpointManagerPID = actor.Spawn(props) s := grpc.NewServer(config.serverOptions...) messages.RegisterRemotingServer(s, &server{}) log.Printf("Starting GAM server on %v.", host) go s.Serve(lis) }
func (state *ParentActor) Receive(context actor.Context) { switch msg := context.Message().(type) { case Hello: props := actor.FromProducer(NewChildActor) child := context.Spawn(props) child.Tell(msg) } }
func main() { runtime.GOMAXPROCS(runtime.NumCPU()) runtime.GC() remoting.Start("127.0.0.1:8080") props := actor. FromProducer(newRemoteActor()). WithMailbox(actor.NewBoundedMailbox(1000, 10000)) actor.SpawnNamed(props, "remote") console.ReadLine() }
func main() { decider := func(child *actor.PID, reason interface{}) actor.Directive { fmt.Println("handling failure for child") return actor.StopDirective } supervisor := actor.NewOneForOneStrategy(10, 1000, decider) props := actor. FromProducer(NewParentActor). WithSupervisor(supervisor) pid := actor.Spawn(props) pid.Tell(Hello{Who: "Roger"}) console.ReadLine() }
func (state *endpointManager) Receive(ctx actor.Context) { switch msg := ctx.Message().(type) { case actor.Started: state.connections = make(map[string]*actor.PID) log.Println("Started EndpointManager") case *messages.MessageEnvelope: pid, ok := state.connections[msg.Target.Host] if !ok { props := actor. FromProducer(newEndpointWriter(msg.Target.Host, state.config)). WithMailbox(newEndpointWriterMailbox(state.config.batchSize, 1000000)) pid = actor.Spawn(props) state.connections[msg.Target.Host] = pid } pid.Tell(msg) } }
func main() { runtime.GOMAXPROCS(runtime.NumCPU()) var wgStop sync.WaitGroup var wgStart sync.WaitGroup messageCount := 1000000 remoting.Start("127.0.0.1:8081") props := actor. FromProducer(newLocalActor(&wgStart, &wgStop, messageCount)). WithMailbox(actor.NewBoundedMailbox(1000, 10000)) pid := actor.Spawn(props) message := &messages.Ping{Sender: pid} remote := actor.NewPID("127.0.0.1:8080", "remote") remote.Tell(&messages.StartRemote{Sender: pid}) wgStart.Wait() start := time.Now() log.Println("Starting to send") for i := 0; i < messageCount; i++ { remote.Tell(message) } wgStop.Wait() elapsed := time.Since(start) log.Printf("Elapsed %s", elapsed) x := int(float32(messageCount*2) / (float32(elapsed) / float32(time.Second))) log.Printf("Msg per sec %v", x) // f, err := os.Create("memprofile") // if err != nil { // log.Fatal(err) // } // pprof.WriteHeapProfile(f) // f.Close() }