Code Monkey home page Code Monkey logo

async-service-call-bundle's Introduction

AsyncServiceCallBundle

This bundle allows you to execute methods of your services asynchronously in a background process

Installation

Download using composer

composer require krlove/async-service-call-bundle

Enable the bundle at AppKernel

$bundles = [
   ...
   new Krlove\AsyncServiceCallBundle\KrloveAsyncServiceCallBundle(),
]

Configuration

Options:

  • console_path - path to console script. Can be absolute or relative to kernel.root_dir parameter's value. Defaults to app/console for Symfony 2.* and bin/console for Symfony 3.*.
  • php_path - path to php executable. If no option provided in configuration, Symfony\Component\Process\PhpExecutableFinder::find will be used to set it up.

Example:

# config.yml
krlove_async_service_call:
    console_path: bin/console
    php_path: /usr/local/bin/php

Usage

Define any service

<?php
    
namespace AppBundle\Service;
    
class AwesomeService
{
    public function doSomething($int, $string, $array)
    {
        // do something heavy
        sleep(10)
    }
}

Register service

# services.yml
services:
    app.service.awesome:
        class: AppBundle\Service\AwesomeService
        public: true

make sure your service is configured with public: true

Execute doSomething method asynchronously:

$this->get('krlove.async')
    ->call('app.service.awesome', 'doSomething', [1, 'string', ['array']);

Line above will execute AppBundle\Service\AwesomeService::doSomething method by running krlove:service:call command in asynchronous Symfony\Component\Process\Process.

Process PID will be returned on success, null on failure.

async-service-call-bundle's People

Contributors

krlove avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.