dsgsdg206050 2015-02-08 08:05
浏览 75
已采纳

symfony2事件调度程序延迟加载监听器

I'm creating some of my own events using Symfony Event Dispatcher, which works fine.

I noticed however, that the listener I configured in symfony is not lazy loaded, it is always initialized. It is rarely used however.

The config in my services.yml looks like:

my.handler:
    class: Acme\AcmeBundle\DependencyInjection\MyHandler
    arguments:
      - @my.dependency
    tags:
      - { name: kernel.event_listener, event: my.event, method: handle }

Is there a way to configure this in such a way that @my.handler is only initialised when the event is fired? Because now it is initialised (along with all its dependencies) when it is pushed in the Dispatcher.

There is documentation about a ContainerAwareEventDispatcher: http://symfony.com/doc/current/components/event_dispatcher/container_aware_dispatcher.html But this only explains how to use it directly in PHP, not how to configure it in a standard symfony2 project.

  • 写回答

1条回答 默认 最新

  • dongxi1965 2015-02-08 22:30
    关注

    You can define it as a Lazy Services adding the relative tag (as described here ) as example:

    my.handler:
        class: Acme\AcmeBundle\DependencyInjection\MyHandler
        lazy: true
        arguments:
          - @my.dependency
        tags:
          - { name: kernel.event_listener, event: my.event, method: handle }
    

    Remember to install the ProxyManager bridge as described in the doc.

    Hope this help

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部