def join(username: String): scala.concurrent.Future[(Iteratee[JsValue, _], Enumerator[JsValue])] = {
println("friend name in model" + username)
val first = Akka.system.actorOf(Props[ChatRoom2], name = username)
println("this is chat room two default")
}
and when i use this val first = context.actorOf(Props[ChatRoom2],name=username)
I am use this for create a child actor in a different chat room but it shows an error not found value context.