Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 410 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 410 Bytes

FaktoryWorker for JVM

(still in progress)

This library will handle the communication between JVM languages to Faktory.

It will allows you to push and cosume Faktory's jobs to be processed.

Examples:

Java

Pushing a Job

  FaktoryClient client = new FaktoryClient();
  FaktoryJob job = new FaktoryJob("MyJob", 1, 2, "foo");
  client.pushJob(job);