This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| back-end:akka [2021/03/23 12:19] – [AKKA] ledyx | back-end:akka [2021/04/09 08:25] (current) – [AKKA] "Parallelism" tag 추가 ledyx | ||
|---|---|---|---|
| Line 9: | Line 9: | ||
| - | {{tag> | + | {{tag> |
| Line 21: | Line 21: | ||
| * Responsive< | * Responsive< | ||
| - | == Actor의 속성 == | + | == Actor == |
| + | |||
| + | === 연산 === | ||
| + | |||
| + | 모든 연산은 **비동기**적!! | ||
| + | |||
| + | * create (생성) | ||
| + | * send (송신) | ||
| + | * become (상태변화) | ||
| + | * supervise (감독) | ||
| + | |||
| + | === 속성 | ||
| * State : Actor는 내부 상태가 있고, 이 상태는 Message를 처리함에 따라 순차적으로 변한다. (mutable) | * State : Actor는 내부 상태가 있고, 이 상태는 Message를 처리함에 따라 순차적으로 변한다. (mutable) | ||