Package akka.actor

Examples of akka.actor.TypedActorFactory


      }
    }).start();

    // TypedActor
    final WeatherService weatherService = TypedActor.newInstance(WeatherService.class, WeatherServiceImpl.class);
    final WeatherServiceUI weatherServiceUI = TypedActor.newInstance(WeatherServiceUI.class, new TypedActorFactory() {
      public TypedActor create() {
        return new WeatherServiceUIImpl(weatherService, temperature, humidity);
      }
    });
View Full Code Here

TOP

Related Classes of akka.actor.TypedActorFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.