1cd00ea7a47b87fafead5efda7a4917179bf4a86
[8sync.git] / demos / actors / simplest-possible.scm
1 ;;; 8sync --- Asynchronous programming for Guile
2 ;;; Copyright (C) 2016 Christopher Allan Webber <cwebber@dustycloud.org>
3 ;;;
4 ;;; This file is part of 8sync.
5 ;;;
6 ;;; 8sync is free software: you can redistribute it and/or modify it
7 ;;; under the terms of the GNU Lesser General Public License as
8 ;;; published by the Free Software Foundation, either version 3 of the
9 ;;; License, or (at your option) any later version.
10 ;;;
11 ;;; 8sync is distributed in the hope that it will be useful,
12 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;;; GNU Lesser General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU Lesser General Public
17 ;;; License along with 8sync.  If not, see <http://www.gnu.org/licenses/>.
18
19 (use-modules (8sync systems actors)
20              (ice-9 match)
21              (oop goops))
22
23 (define-simple-actor <emo>
24   ((greet-proog
25     (lambda (actor message)
26       (display "Heya Proog!\n")
27       (send-message
28        actor (message-ref message 'target)
29        'greet-emo)))))
30
31 (define-simple-actor <proog>
32   ((greet-emo
33     (lambda (actor message)
34       (display "Hi, Emo!\n")))))
35
36 (define hive (make-hive))
37 (define our-emo (hive-create-actor hive <emo>))
38 (define our-proog (hive-create-actor hive <proog>))
39 (ez-run-hive hive
40              (list (hive-bootstrap-message hive our-emo 'greet-proog
41                                            #:target our-proog)))