Skip to main content

ReadyHandler

No overview available.

Methods


ReadyHandler()

def ReadyHandler(
ctx: context.Context,
future: [Future](future.md?sid=flyteplugins_go_tasks_pluginmachinery_catalog_future)
) - > null

Handles the readiness of a future, typically used to process the result of an asynchronous operation once it completes.

Parameters

NameTypeDescription
ctxcontext.ContextThe context for the handler, which can carry deadlines, cancellation signals, and other request-scoped values.
future[Future](future.md?sid=flyteplugins_go_tasks_pluginmachinery_catalog_future)The future whose readiness is being handled, allowing the handler to retrieve its result or error.

Returns

TypeDescription
nullThis function type does not return a value.