Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Code Block
languagejava
themeEmacs
public class ActorBase {
   
   protected final Logger log = LoggerFactory.getLogger(this.getClass());
   
   public void runAll() {
      
   }
   
   protected ActorSystem system;
   protected SpringExtension ext;
   
   public ActorSystem getSystem() {
      return system;
   }
   public void setSystem(ActorSystem system) {
      this.system = system;
   }
   public SpringExtension getExt() {
      return ext;
   }
   public void setExt(SpringExtension ext) {
      this.ext = ext;
   }
}

Image RemovedImage Added





Actor는 기본적으로 공통적으로 사용되는 ActorSystem 이 있으며, 외부로부터 설정이 가능해야합니다.

...