Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 하이퍼레저 패브릭
- 블록체인
- Adapter 패턴
- 스칼라
- 스칼라 동시성
- 파이썬
- 하이브리드앱
- 파이썬 강좌
- Actor
- Akka
- 파이썬 동시성
- Play2 로 웹 개발
- CORDA
- play2 강좌
- Golang
- 주키퍼
- Play2
- akka 강좌
- 스칼라 강좌
- 파이썬 데이터분석
- 스위프트
- 그라파나
- play 강좌
- 이더리움
- hyperledger fabric
- Hyperledger fabric gossip protocol
- 엔터프라이즈 블록체인
- 파이썬 머신러닝
- 안드로이드 웹뷰
- 플레이프레임워크
Archives
- Today
- Total
목록아카 부모 자식 (1)
HAMA 블로그
예제로 보는 아카(akka) - 3. 부모,자식 액터
- Scala 2.11 기반 - Akka 2.4.11 기반 - Learning Concurrent Programming in Scala 참고 부모 액터 class ParentActor extends Actor { val log = Logging(context.system, this) def receive = { case "create" => context.actorOf(Props[ChildActor]) log.info(s"created a new child - children = ${context.children}") case "hi" => log.info("Kids, say hi!") for (c log.info("parent stopping") context.stop(self) } } - "creat..
Akka
2016. 10. 5. 14:20