-
Notifications
You must be signed in to change notification settings - Fork 14
/
documentation.lisp
275 lines (240 loc) · 8.56 KB
/
documentation.lisp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
(in-package :asys)
(pax:defsection @actor-system (:title "Actor-System")
(asys:actor-system class)
(asys:make-actor-system function)
(asys:*default-config* variable)
(asys:register-dispatcher function)
(asys:register-new-dispatcher function)
(asys:evstream (pax:reader actor-system))
(asys:scheduler (pax:reader actor-system))
;; ac protocol
(ac:actor-of (method () (asys:actor-system)))
(ac:find-actors (method () (asys:actor-system t)))
(ac:all-actors (method () (asys:actor-system)))
(ac:stop (method () (asys:actor-system t)))
(ac:shutdown (method () (asys:actor-system)))
)
(in-package :ac)
(pax:defsection @ac-protocol (:title "Actor-Context protocol")
(ac:actor-of generic-function)
(ac:find-actors generic-function)
(ac:all-actors generic-function)
(ac:stop generic-function)
(ac:shutdown generic-function))
(pax:defsection @actor-context (:title "Actor-Context")
(ac:actor-context class)
(ac:make-actor-context function)
(ac:actor-of (method () (ac:actor-context)))
(ac:find-actors (method () (ac:actor-context t)))
(ac:all-actors (method () (ac:actor-context)))
(ac:stop (method () (ac:actor-context t)))
(ac:shutdown (method () (ac:actor-context)))
(ac:notify generic-function)
(ac:system (pax:reader actor-context))
(ac:id (pax:reader actor-context))
(ac:actor-name-exists condition)
(@ac-protocol pax:section))
(in-package :act-cell)
(pax:defsection @actor-cell (:title "Actor-Cell")
(act-cell:actor-cell class)
(act-cell:name (pax:reader actor-cell))
(act-cell:state (pax:reader actor-cell))
(act-cell:msgbox (pax:accessor actor-cell))
(act-cell:handle-call generic-function)
(act-cell:handle-cast generic-function)
(act-cell:stop generic-function)
(act-cell:call function)
(act-cell:cast function)
(act-cell:running-p function))
(in-package :mesgb)
(pax:defsection @message-box-base (:title "Message-box base class")
(mesgb::message-box-base class)
(mesgb::name (pax:reader mesgb::message-box-base))
(mesgb::max-queue-size (pax:reader mesgb::message-box-base))
(mesgb:submit generic-function)
(mesgb:stop generic-function)
(mesgb:stop (method () (mesgb::message-box-base))))
(pax:defsection @message-box/bt (:title "Message-box threaded")
(mesgb:message-box/bt class)
(mesgb:submit (method () (mesgb:message-box/bt t t t t))))
(pax:defsection @message-box/dp (:title "Message-box dispatched")
(mesgb:message-box/dp class)
(mesgb:submit (method () (mesgb:message-box/dp t t t t))))
(in-package :future)
(pax:defsection @future (:title "Future (delayed-computation)")
(future:future class)
(future:with-fut pax:macro)
(future:with-fut-resolve pax:macro)
(future:make-future function)
(future:complete-p function)
(future:fcompleted pax:macro)
(future:fresult function)
(future:fmap pax:macro)
(future:frecover pax:macro))
(in-package :async-future)
(pax:defsection @async-future (:title "Async Future handling")
(async-future:fasync-completed pax:macro))
(in-package :act)
(pax:defsection @actor (:title "Actor")
(act:actor class)
(act:make-actor generic-function)
(act:tell generic-function)
(act:ask-s generic-function)
(act:ask generic-function)
(act:reply function)
(act:become generic-function)
(act:unbecome generic-function)
(act:context generic-function)
(act:path generic-function)
(act:watch generic-function)
(act:unwatch generic-function)
(act:watchers generic-function)
(act:pre-start generic-function)
(act:after-stop generic-function)
;; event stream protocol
(ev:subscribe (method () (act:actor act:actor)))
(ev:unsubscribe (method () (act:actor act:actor)))
(ev:publish (method () (act:actor t)))
;; actor-context protocol
(ac:find-actors (method () (act:actor t)))
(ac:all-actors (method () (act:actor)))
(ac:actor-of (method () (act:actor)))
(ac:system (method () (act:actor)))
(act-cell::@actor-cell pax:section)
(mesgb::@message-box-base pax:section)
(mesgb::@message-box/bt pax:section)
(mesgb::@message-box/dp pax:section))
(in-package :agthash)
(pax:defsection @hash-agent (:title "Hash-table agent")
(agthash:make-hash-agent function)
(agthash:agent-gethash function)
(agthash:agent-remhash function)
(agthash:agent-clrhash function)
(agthash:agent-dohash function))
(in-package :agtarray)
(pax:defsection @array-agent (:title "Array/Vector agent")
(agtarray:make-array-agent function)
(agtarray:agent-elt function)
(agtarray:agent-push function)
(agtarray:agent-push-and-getidx function)
(agtarray:agent-pop function)
(agtarray:agent-delete function)
(agtarray:agent-doarray function))
(in-package :agt)
(pax:defsection @agent (:title "Agent")
(agt:agent class)
(agt:make-agent function)
(agt:agent-get function)
(agt:agent-update function)
(agt:agent-update-and-get function)
(agt:agent-stop function)
(agthash::@hash-agent pax:section)
(agtarray::@array-agent pax:section))
(in-package :fsm)
(pax:defsection @fsm (:title "Finite state machine")
(fsm:fsm class)
(fsm:make-fsm function)
(fsm:when-state pax:macro)
(fsm:on-event pax:macro)
(fsm:goto-state pax:macro)
(fsm:stay-on-state pax:macro)
(fsm:when-unhandled pax:macro)
(fsm:on-transition pax:macro)
(fsm:*received-event* variable)
(fsm:*event-data* variable)
(fsm:*state-data* variable)
(fsm:*next-state-data* variable))
(in-package :disp)
(pax:defsection @shared-dispatcher (:title "Shared dispatcher")
(disp:shared-dispatcher class))
(pax:defsection @dispatcher (:title "Dispatcher")
(disp:dispatcher-base class)
(disp:identifier (pax:reader disp:dispatcher-base))
(disp:make-dispatcher function)
(disp:dispatch generic-function)
(disp:dispatch-async generic-function)
(disp:stop generic-function)
(disp:workers generic-function)
(disp:dispatch-worker class)
(disp:make-dispatcher-worker function)
(disp::@shared-dispatcher pax:section))
(in-package :stash)
(pax:defsection @stashing (:title "Stashing")
(stash:stashing class)
(stash:stash function)
(stash:unstash-all function))
(in-package :router)
(pax:defsection @router (:title "Router")
(router:router class)
(router:make-router function)
(router:add-routee function)
(router:stop function)
(router:routees function)
(router:tell (method () (router:router t)))
(router:ask-s (method () (router:router t)))
(router:ask (method () (router:router t))))
(in-package :ev)
(pax:defsection @eventstream (:title "Eventstream")
(ev:eventstream class)
(ev:make-eventstream function)
(ev:subscribe generic-function)
(ev:unsubscribe generic-function)
(ev:publish generic-function)
(ev:subscribe (method () (ev:eventstream act:actor)))
(ev:subscribe (method () (asys:actor-system act:actor)))
(ev:subscribe (method () (act:actor act:actor)))
(ev:unsubscribe (method () (ev:eventstream act:actor)))
(ev:unsubscribe (method () (asys:actor-system act:actor)))
(ev:unsubscribe (method () (act:actor act:actor)))
(ev:publish (method () (ev:eventstream t)))
(ev:publish (method () (asys:actor-system t)))
(ev:publish (method () (act:actor t)))
)
(in-package :tasks)
(pax:defsection @tasks (:title "Tasks")
(tasks:with-context pax:macro)
(tasks:*task-context* variable)
(tasks:*task-dispatcher* variable)
(tasks:task-yield function)
(tasks:task-start function)
(tasks:task-async function)
(tasks:task-await function)
(tasks:task-shutdown function)
(tasks:task-async-stream function))
(in-package :config)
(pax:defsection @config (:title "Config")
(config:config-from function)
(config:retrieve-section function)
(config:retrieve-value function)
(config:retrieve-keys function)
(config:merge-config function))
(in-package :wt)
(pax:defsection @scheduler (:title "Scheduler")
(wt:wheel-timer class)
(wt:make-wheel-timer function)
(wt:shutdown-wheel-timer function)
(wt:schedule-once function)
(wt:schedule-recurring function)
(wt:cancel function))
(defpackage :sento.docs)
(in-package :sento.docs)
(pax:defsection @readme (:title "Introduction")
(README.md (pax:include #.(asdf:system-relative-pathname :sento "README.md"))))
(pax:defsection @api (:title "API documentation")
(asys::@actor-system pax:section)
(ac::@actor-context pax:section)
(act::@actor pax:section)
(agt::@agent pax:section)
(fsm::@fsm pax:section)
(stash::@stashing pax:section)
(disp::@dispatcher pax:section)
(router::@router pax:section)
(ev::@eventstream pax:section)
(future::@future pax:section)
;;(async-future::@async-future pax:section)
(tasks::@tasks pax:section)
(config::@config pax:section)
(wt::@scheduler pax:section))
(pax:defsection @sento (:title "sento documentation")
(@readme pax:section)
(@api pax:section))