3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, StatusNet, Inc.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 if (!defined('GNUSOCIAL')) { exit(1); }
23 * Queue handler for letting plugins handle stuff.
25 * The plugin queue handler accepts notices over the "plugin" queue
26 * and simply passes them through the "HandleQueuedNotice" event.
28 * This gives plugins a chance to do background processing without
29 * actually registering their own queue and ensuring that things
32 * Fancier plugins may wish to instead hook the 'GetQueueHandlerClass'
33 * event with their own class, in which case they must ensure that
34 * their notices get enqueued when they need them.
36 class PluginQueueHandler extends QueueHandler
43 function handle($notice)
46 Event::handle('HandleQueuedNotice', array(&$notice));
47 } catch (NoProfileException $unp) {
48 // We can't do anything about this, so just skip