Пример #1
0
 * beanstalklr - Simple beanstalkd PHP client with additional functionality extended from pda/pheanstalk
 * Copyright (C) 2014  Leonid Notik
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * Also add information on how to contact you by electronic and paper mail.
 *
 * Greenfield Technologies Ltd., hereby disclaims all copyright interest in
 * the library   beanstalklr - Simple beanstalkd PHP client with additional functionality extended from pda/pheanstalk
 * written by Leonid Notik and its respective list of contributors.
 */
require_once "../vendor/autoload.php";
try {
    $queue = new beanstalklr('beanstalk_server', 'beanstalk_port');
    $response = $queue->createJob('notik', array("ok" => "fine"));
    echo json_encode($response);
} catch (Exception $e) {
    header('Content-Type: application/json');
    echo json_encode(array('status' => $e->getCode(), 'message' => $e->getMessage()));
}
Пример #2
0
 * beanstalklr - Simple beanstalkd PHP client with additional functionality extended from pda/pheanstalk
 * Copyright (C) 2014  Leonid Notik
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * Also add information on how to contact you by electronic and paper mail.
 *
 * Greenfield Technologies Ltd., hereby disclaims all copyright interest in
 * the library   beanstalklr - Simple beanstalkd PHP client with additional functionality extended from pda/pheanstalk
 * written by Leonid Notik and its respective list of contributors.
 */
require_once "../vendor/autoload.php";
try {
    $queue = new beanstalklr('beanstalk_server', 'beanstalk_port');
    $response = $queue->emptyTube("notik");
    echo json_encode($response);
} catch (Exception $e) {
    header('Content-Type: application/json');
    echo json_encode(array('status' => $e->getCode(), 'message' => $e->getMessage()));
}
Пример #3
0
 * beanstalklr - Simple beanstalkd PHP client with additional functionality extended from pda/pheanstalk
 * Copyright (C) 2014  Leonid Notik
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * Also add information on how to contact you by electronic and paper mail.
 *
 * Greenfield Technologies Ltd., hereby disclaims all copyright interest in
 * the library   beanstalklr - Simple beanstalkd PHP client with additional functionality extended from pda/pheanstalk
 * written by Leonid Notik and its respective list of contributors.
 */
require_once "../vendor/autoload.php";
try {
    $queue = new beanstalklr('beanstalk_server', 'beanstalk_port');
    $response = $queue->emptyTubes();
    echo json_encode($response);
} catch (Exception $e) {
    header('Content-Type: application/json');
    echo json_encode(array('status' => $e->getCode(), 'message' => $e->getMessage()));
}
 * beanstalklr - Simple beanstalkd PHP client with additional functionality extended from pda/pheanstalk
 * Copyright (C) 2014  Leonid Notik
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * Also add information on how to contact you by electronic and paper mail.
 *
 * Greenfield Technologies Ltd., hereby disclaims all copyright interest in
 * the library   beanstalklr - Simple beanstalkd PHP client with additional functionality extended from pda/pheanstalk
 * written by Leonid Notik and its respective list of contributors.
 */
require_once "../vendor/autoload.php";
try {
    $queue = new beanstalklr('beanstalk_server', 'beanstalk_port');
    $response = $queue->jobsAndStatisticsPerTube("notik");
    echo json_encode($response);
} catch (Exception $e) {
    header('Content-Type: application/json');
    echo json_encode(array('status' => $e->getCode(), 'message' => $e->getMessage()));
}