~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/longpoll/__init__.py

[r=abentley,
        rvb][no-qa] UpdatePreviewDiffJob now issues an ObjectModifiedEvent
        when it updates the preview_diff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
    ]
11
11
 
12
12
from lazr.restful.utils import get_current_browser_request
13
 
from zope.component import getMultiAdapter
 
13
from zope.component import getAdapter
14
14
 
15
15
from lp.services.longpoll.interfaces import (
16
16
    ILongPollEvent,
18
18
    )
19
19
 
20
20
 
21
 
def subscribe(target, event, request=None):
 
21
def subscribe(target, event_name=u"", request=None):
22
22
    """Convenience method to subscribe the current request.
23
23
 
24
24
    :param target: Something that can be adapted to `ILongPollEvent`.
25
 
    :param event: The name of the event to subscribe to.
 
25
    :param event_name: The name of the event to subscribe to. This is used to
 
26
        look up a named adapter from `target` to `ILongPollEvent`.
26
27
    :param request: The request for which to get an `ILongPollSubscriber`. It
27
28
        a request is not specified the currently active request is used.
28
29
    :return: The `ILongPollEvent` that has been subscribed to.
29
30
    """
30
 
    event = getMultiAdapter((target, event), ILongPollEvent)
 
31
    event = getAdapter(target, ILongPollEvent, name=event_name)
31
32
    if request is None:
32
33
        request = get_current_browser_request()
33
34
    subscriber = ILongPollSubscriber(request)
35
36
    return event
36
37
 
37
38
 
38
 
def emit(source, event, data):
 
39
def emit(source, event_name=u"", **data):
39
40
    """Convenience method to emit a message for an event.
40
41
 
41
 
    :param source: Something, along with `event`, that can be adapted to
42
 
        `ILongPollEvent`.
43
 
    :param event: A name/key of the event that is emitted.
 
42
    :param source: Something that can be be adapted to `ILongPollEvent`.
 
43
    :param event_name: The name of the event to subscribe to. This is used to
 
44
        look up a named adapter from `target` to `ILongPollEvent`.
 
45
    :param data: See `ILongPollEvent.emit`.
44
46
    :return: The `ILongPollEvent` that has been emitted.
45
47
    """
46
 
    event = getMultiAdapter((source, event), ILongPollEvent)
47
 
    event.emit(data)
 
48
    event = getAdapter(source, ILongPollEvent, name=event_name)
 
49
    event.emit(**data)
48
50
    return event