syndicate-rkt/syndicate/reflection.rkt

10 lines
297 B
Racket
Raw Normal View History

2019-01-28 01:14:01 +00:00
#lang racket/base
;; Reflective protocols
(provide (struct-out terminated))
;; (terminated Any (Option Any))
;; The `actor-name` is the name of the terminated actor.
;; The `reason` is either `#f` or a termination reason, usually an `exn?`.
(struct terminated (actor-name reason) #:transparent)