Uses of Class
migratedb.v1.core.api.callback.Event
-
Packages that use Event Package Description migratedb.v1.core.api.callback Interfaces for MigrateDB lifecycle callbacks.migratedb.v1.core.api.internal.callback migratedb.v1.core.internal.callback Private API. -
-
Uses of Event in migratedb.v1.core.api.callback
Methods in migratedb.v1.core.api.callback that return Event Modifier and Type Method Description static EventEvent. fromId(String id)Retrieves the event with this id.static EventEvent. valueOf(String name)Returns the enum constant of this type with the specified name.static Event[]Event. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in migratedb.v1.core.api.callback with parameters of type Event Modifier and Type Method Description booleanBaseCallback. canHandleInTransaction(Event event, Context context)booleanCallback. canHandleInTransaction(Event event, Context context)Whether this event can be handled in a transaction or whether it must be handled outside a transaction instead.voidCallback. handle(Event event, Context context)Handles this MigrateDB lifecycle event.booleanBaseCallback. supports(Event event, Context context)booleanCallback. supports(Event event, Context context)Whether this callback supports this event or not. -
Uses of Event in migratedb.v1.core.api.internal.callback
Methods in migratedb.v1.core.api.internal.callback with parameters of type Event Modifier and Type Method Description voidCallbackExecutor. onEachMigrateEvent(Event event)Executes the callbacks for an "each" event within the same transaction (if any) as the main operation.voidCallbackExecutor. onEvent(Event event)Executes the callbacks for this event on the main connection, within a separate transaction per callback if possible.voidCallbackExecutor. onMigrateEvent(Event event)Executes the callbacks for this event on the migration connection, within a separate transaction per callback if possible.voidCallbackExecutor. onOperationFinishEvent(Event event, OperationResult operationResult)Executes the callbacks for an operation finish event. -
Uses of Event in migratedb.v1.core.internal.callback
Methods in migratedb.v1.core.internal.callback with parameters of type Event Modifier and Type Method Description booleanNoopCallback. canHandleInTransaction(Event event, Context context)voidNoopCallback. handle(Event event, Context context)voidDefaultCallbackExecutor. onEachMigrateEvent(Event event)voidNoopCallbackExecutor. onEachMigrateEvent(Event event)voidDefaultCallbackExecutor. onEvent(Event event)voidNoopCallbackExecutor. onEvent(Event event)voidDefaultCallbackExecutor. onMigrateEvent(Event event)voidNoopCallbackExecutor. onMigrateEvent(Event event)voidDefaultCallbackExecutor. onOperationFinishEvent(Event event, OperationResult operationResult)voidNoopCallbackExecutor. onOperationFinishEvent(Event event, OperationResult operationResult)booleanNoopCallback. supports(Event event, Context context)
-