diff options
author | Valery Piashchynski <[email protected]> | 2020-12-26 13:13:59 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-26 13:13:59 +0300 |
commit | 1aaf6e6ffb015cd5a21d9d938ad84c18723973c5 (patch) | |
tree | 7221427ba25f8f99a10720778a420703dc2bff92 /plugins/http/handler.go | |
parent | de4d0b6e66ceda08b0daec18a218c1baa71ebf04 (diff) |
Reorganize eventsv2.0.0-beta4
Diffstat (limited to 'plugins/http/handler.go')
-rw-r--r-- | plugins/http/handler.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/http/handler.go b/plugins/http/handler.go index 1889ed6d..15954f96 100644 --- a/plugins/http/handler.go +++ b/plugins/http/handler.go @@ -26,7 +26,7 @@ const ( const MB = 1024 * 1024 type Handle interface { - AddListener(l events.EventListener) + AddListener(l events.Listener) ServeHTTP(w http.ResponseWriter, r *http.Request) } @@ -75,7 +75,7 @@ type handler struct { log logger.Logger pool pool.Pool mul sync.Mutex - lsn events.EventListener + lsn events.Listener } func NewHandler(maxReqSize uint64, uploads UploadsConfig, trusted Cidrs, pool pool.Pool) (Handle, error) { @@ -91,7 +91,7 @@ func NewHandler(maxReqSize uint64, uploads UploadsConfig, trusted Cidrs, pool po } // Listen attaches handler event controller. -func (h *handler) AddListener(l events.EventListener) { +func (h *handler) AddListener(l events.Listener) { h.mul.Lock() defer h.mul.Unlock() |