论坛首页 编程语言技术论坛

Akka 一些异常

浏览 1143 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2014-09-17  

老版本的AKKA换成新版本会有

Exception in thread "main" java.lang.IllegalArgumentException: cannot use non-static local Creator to create actors; make it static (e.g. local to a static method) or top-level

new UntypedActorFactory() 
{
	public UntypedActor create() 
       {
			return new ReduceActor(aggregateActor);
	}
}

 

 都是UntypedActorFactory造成的。新版已经不使用了。

 

 可以改写成:

	static class newCreator implements Creator<ReduceActor> {

		private static final long serialVersionUID = -1772539428749702579L;

		final ActorRef actorRef;

		public newCreator(ActorRef actorRef) {
			super();
			this.actorRef = actorRef;
		}

		@Override
		public ReduceActor create() throws Exception {
			return new ReduceActor(actorRef);
		}
	}

 这个是个例子,需要根据具体情况进行修改。

论坛首页 编程语言技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics