Gilles Barbier

Results 27 comments of Gilles Barbier

I confirm that - using yarn is painfully slow (minutes instead of seconds)

Note: currently there are no events such as `TaskCompleted`, `TaskCanceled`, `WorkflowCompleted`, `WorkflowCanceled`(it's not needed by the engine). Providing those events will be useful for analytics purposes when introspecting the topics....

@ManokarG can you please elaborate about your use cases?

> i want to cancel that task so that means i have to call a function in that task to cancel the deferred. You would like to be able to...

At short term, the cancellation of a deferred will have the following consequence: - trying to await() a canceled deferred will throw an exception - if the deferred is a...

Infinitic can be extended to other languages as soon as an Apache Pulsar client exists. Using Avro serialization format internally, Infinitic could even mix multiple programming languages. But currently only...

@gmendoza-wenance sorry for the delay - I missed the notification :( The workflow does not know the actual implementation of tasks - only their interface. There is few limitations about...

@gmendoza-wenance In workflows, tasks are not instantiated by `newTask` - this function only creates a stub that - when used - will trigger a remote call to the [Service Worker](https://docs.infinitic.io/services/workers)...

@gmendoza-wenance the 0.10.0 release introduced a new way to register Service that allows you to have dependency injection (see bottom of https://docs.infinitic.io/services/workers/). Let me know if it solves your issue