All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.taskurotta.service.ServiceBundle Maven / Gradle / Ivy

package ru.taskurotta.service;

import ru.taskurotta.service.config.ConfigService;
import ru.taskurotta.service.dependency.DependencyService;
import ru.taskurotta.service.gc.GarbageCollectorService;
import ru.taskurotta.service.storage.BrokenProcessService;
import ru.taskurotta.service.queue.QueueService;
import ru.taskurotta.service.storage.ProcessService;
import ru.taskurotta.service.storage.TaskService;

/**
 * User: romario
 * Date: 4/1/13
 * Time: 4:28 PM
 */
public interface ServiceBundle {

    public ProcessService getProcessService();

    public TaskService getTaskService();

    public QueueService getQueueService();

    public DependencyService getDependencyService();

    public ConfigService getConfigService();

    public BrokenProcessService getBrokenProcessService();

    public GarbageCollectorService getGarbageCollectorService();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy