Skip to content
Permalink
dd80894f8c
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
7 lines (4 sloc) 459 Bytes
(ns de.mpg.shh.util-message-server.life-cycle)
(defprotocol ListenableLifeCycle
(listen [component context-config address channel selector] "Subscribes to the address at the given context and copies the internal response channel onto the supplied channel")
(unlisten [component context-config address channel] "Stop copying the internal response channel onto the given channel. If this is the last listener for this context and address, unsubscribe"))