GithubHelp home page GithubHelp logo

job-runner's Introduction

Build Status

JobRunner

JobRunner is a Symfony bundle intended for manage, execute, display and log jobs.

Installation

Repository currently marked as dev. Set up your composer.json consequently

"minimum-stability": "dev",
"prefer-stable": true,
 "repositories": [
    {
                "type": "vcs",
                "url": "https://github.com/bnza/job-runner.git"
    }
],

Usage

Job can be created extending \Bnza\Job\AbstractJob and particularly implementing setName and getTasks method.

getTasks returns an Iterable object which contains the job's Task list.

<?php
// in src\Job\Task\DummyTask.php

use \Bnza\JobRunnerBundle\Job\AbstractTask;

class DummyTask extends AbstractTask
{
    public function getName(): string 
    {
        return "Dummy Task";
    }
    
    public function getCallable(): callable
    {
        return function($a, $b) {
          return $a + $b;  
        };
    }
    
    public function getData(): iterable
    {
        return [10, 25];
    }
}
<?php
// in src\Job\Task\DummyJob.php

use \Bnza\JobRunnerBundle\Job\AbstractJob;
use \Bnza\JobRunnerBundle\Job\AbstractTask;

class DummyJob extends AbstractJob
{
    public function getName(): string 
    {
        return "Dummy Job";
    }
    
    public function configure(): void
    {        
    }
    
    public function getTasks(): iterable
    {
        return [
            [AbstractTask::class]
        ];
    }
}
<?php
// elsewhere in your logic
use \YourNamespace\DummyJob;
use \Bnza\JobRunnerBundle\Job\OM\JobTmpFSObjectManager;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Symfony\Component\HttpFoundation\ParameterBag;

$om = new JobTmpFSObjectManager();
$dispatcher = new EventDispatcher();
$pb = new ParameterBag();
$job = new DummyJob($dispatcher, $om, $pb);
$job->run();

job-runner's People

Contributors

bnza 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.