Пример #1
0
 public WebSocketActorAdapter(
     ChannelHandlerContext ctx, ActorRef<? super WebMessage> userActor) {
   super(userActor.getName(), new WebSocketChannelAdapter(ctx));
   ((WebSocketChannelAdapter) (SendPort) getMailbox()).actor = this;
   this.ctx = ctx;
   this.userActor = userActor;
   watch(userActor);
 }