petabridge / akka-bootcamp

Self-paced training course to learn Akka.NET fundamentals from scratch
http://learnakka.net/
Apache License 2.0
1.04k stars 1.57k forks source link

just learning Akka - started Lesson 1: "ConsoleWriterActor() could not be found" error #220

Open NetEyes opened 7 years ago

NetEyes commented 7 years ago

I am using visual studio 2017. I'd install package Akka. on the Program.cs Main .. as instructed on the lesson. I added

var consoleWriterActor = MyActorSystem.ActorOf(Props.Create(() => new ConsoleWriterActor())); var consoleReaderActor = MyActorSystem.ActorOf(Props.Create(() => new ConsoleReaderActor(consoleWriterActor)));

"ConsoleWriterActor() could not be found" error. Please advise what library to be added other than Akka.Actor

PatrickMcDonald commented 7 years ago

It looks like you skipped over the Launch the fill-in-the-blank sample section

The ConsoleWriterActor is defined in the DoThis project