}
}).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);
}
});