taskmaster-core

Task Master allows a Runnable task to be submitted for execution and returns a Future representing that task.

Лицензия

Лицензия

Группа

Группа

com.github.bordertech.taskmaster
Идентификатор

Идентификатор

taskmaster-core
Последняя версия

Последняя версия

2.0.0-beta-1
Дата

Дата

Тип

Тип

jar
Описание

Описание

taskmaster-core
Task Master allows a Runnable task to be submitted for execution and returns a Future representing that task.

Скачать taskmaster-core

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.bordertech.taskmaster/taskmaster-core/ -->
<dependency>
    <groupId>com.github.bordertech.taskmaster</groupId>
    <artifactId>taskmaster-core</artifactId>
    <version>2.0.0-beta-1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.bordertech.taskmaster/taskmaster-core/
implementation 'com.github.bordertech.taskmaster:taskmaster-core:2.0.0-beta-1'
// https://jarcasting.com/artifacts/com.github.bordertech.taskmaster/taskmaster-core/
implementation ("com.github.bordertech.taskmaster:taskmaster-core:2.0.0-beta-1")
'com.github.bordertech.taskmaster:taskmaster-core:jar:2.0.0-beta-1'
<dependency org="com.github.bordertech.taskmaster" name="taskmaster-core" rev="2.0.0-beta-1">
  <artifact name="taskmaster-core" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.bordertech.taskmaster', module='taskmaster-core', version='2.0.0-beta-1')
)
libraryDependencies += "com.github.bordertech.taskmaster" % "taskmaster-core" % "2.0.0-beta-1"
[com.github.bordertech.taskmaster/taskmaster-core "2.0.0-beta-1"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
com.github.bordertech.taskmaster : taskmaster-cache-helper jar 2.0.0-beta-1
com.github.bordertech.taskmaster : taskmaster-servlet-tools jar 2.0.0-beta-1
com.github.bordertech.didums : didums-core jar 1.0.4

provided (1)

Идентификатор библиотеки Тип Версия
javax.servlet : servlet-api jar 2.5

test (1)

Идентификатор библиотеки Тип Версия
org.junit.vintage : junit-vintage-engine jar 5.5.0

Модули Проекта

Данный проект не имеет модулей.

Task Master

Task Master helps run ASYNC tasks.

Status

Build Status Quality Gate Status Reliability Rating Coverage Codacy Badge Javadocs Maven Central

What is TaskMaster

Task Master allows a Runnable task to be submitted for execution and returns a Future representing that task. The Future's get method will return the given result upon successful completion.

As Web applications require a Future implementation that can be serializable, the Task Master has a custom interface of TaskFuture that implements both Future and Serializable. It does not make sense for a Future to be serilaizable as it is running on a specific thread on a particular server. To allow a Web Application to keep a reference to the Future, the default implementation of TaskFuture (ie TaskFutureWrapper) wraps the future by putting the Future on a cache and holding onto the cache key that is serializable.

Cache Helper (JSR107)

The CacheHelper allows projects to provide a specific mechanism for creating their cache requirements.

ServiceHelper

The ServiceHelper class helps applications submit ASYNC service calls.

com.github.bordertech.taskmaster
Open source projects from the Border

Версии библиотеки

Версия
2.0.0-beta-1
1.0.5
1.0.4
1.0.3
1.0.2