X-Git-Url: http://git.pond.sub.org/?p=eow;a=blobdiff_plain;f=Notes;h=72d09d698f766308a3997203aca522a09a8dba5c;hp=84450c8edb39056ddf4b17683a12d6273c365aa2;hb=54e14006564ff34c8249b9ddb357201759d77101;hpb=5d9cd96defbb48b12f4a2ba528ec41c7286e1a32 diff --git a/Notes b/Notes index 84450c8..72d09d6 100644 --- a/Notes +++ b/Notes @@ -1,3 +1,11 @@ + +reproducible install + - dependencies + - install from clean state + +use sb-concurrency mailbox instead of own + +-------------------------------------------------------------------------------- On COMET w/ hunchentoot: http://common-lisp.net/pipermail/tbnl-devel/2009-February/004620.html I have a working comet system using Hunchentoot. @@ -26,3 +34,14 @@ available. (defun comet (fn &optional (session *working-session*)) (setf (session-value 'comet-fn session) fn) (signal-semaphore (session-value 'comet-semaphore session))) + +-------------------------------------------------------------------------------- + +Empire connection handling + +Maybe do something like cl-irc does with register/unregister handler. Might be +even better combined with the modes system, provide an easy way to specify which +event types a specific mode implementation is interested in. Register automatically +on construction and deregister when leaving the mode. + +Using the object system like I do it right doesn't seem like a really good fit.