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
| Name | Type | Description |
|---|---|---|
| ctx | context.Context | The 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
| Type | Description |
|---|---|
null | This function type does not return a value. |