Вход Регистрация
Файл: vendor/laravel/framework/src/Illuminate/Bus/BatchRepository.php
Строк: 109
<?php

namespace IlluminateBus;

use 
Closure;

interface 
BatchRepository
{
    
/**
     * Retrieve a list of batches.
     *
     * @param  int  $limit
     * @param  mixed  $before
     * @return IlluminateBusBatch[]
     */
    
public function get($limit$before);

    
/**
     * Retrieve information about an existing batch.
     *
     * @param  string  $batchId
     * @return IlluminateBusBatch|null
     */
    
public function find(string $batchId);

    
/**
     * Store a new pending batch.
     *
     * @param  IlluminateBusPendingBatch  $batch
     * @return IlluminateBusBatch
     */
    
public function store(PendingBatch $batch);

    
/**
     * Increment the total number of jobs within the batch.
     *
     * @param  string  $batchId
     * @param  int  $amount
     * @return void
     */
    
public function incrementTotalJobs(string $batchIdint $amount);

    
/**
     * Decrement the total number of pending jobs for the batch.
     *
     * @param  string  $batchId
     * @param  string  $jobId
     * @return IlluminateBusUpdatedBatchJobCounts
     */
    
public function decrementPendingJobs(string $batchIdstring $jobId);

    
/**
     * Increment the total number of failed jobs for the batch.
     *
     * @param  string  $batchId
     * @param  string  $jobId
     * @return IlluminateBusUpdatedBatchJobCounts
     */
    
public function incrementFailedJobs(string $batchIdstring $jobId);

    
/**
     * Mark the batch that has the given ID as finished.
     *
     * @param  string  $batchId
     * @return void
     */
    
public function markAsFinished(string $batchId);

    
/**
     * Cancel the batch that has the given ID.
     *
     * @param  string  $batchId
     * @return void
     */
    
public function cancel(string $batchId);

    
/**
     * Delete the batch that has the given ID.
     *
     * @param  string  $batchId
     * @return void
     */
    
public function delete(string $batchId);

    
/**
     * Execute the given Closure within a storage specific transaction.
     *
     * @param  Closure  $callback
     * @return mixed
     */
    
public function transaction(Closure $callback);
}
Онлайн: 0
Реклама