Version: 5.0.8-ice34-b60

OmeroBlitz Api
Home Previous Up Next Index

omero::api::delete

Overview

module delete

Exploratory Delete API for background processing of deletes. For more information, see ticket #2665.

Class Index

DeleteReport
Status object which is returned for each DeleteCommand passed to IDelete::queueCommand.

Deprecated.

Interface Index

DeleteHandle
Returned by IDelete to allow managing of queued delete operations.

Deprecated.

Structure Index

DeleteCommand
Command object which represents a single delete request.

Deprecated.

Sequence Index

DeleteCommands
DeleteReports

Constant Index

HARD
String constant used as the value of an option key/value pair, implying that the given section of the graph must be deleted, otherwise the transaction should be rolled back.
ORPHAN
String constant used as the value of an option key/value pair, implying that the given section of the graph should be orphaned rather than be deleted.
REAP
String constant used as the value of an option key/value pair, implying that the given section of the graph should be deleted if it would otherwise be orphaned.
SOFT
String constant used as the value of an option key/value pair, implying that the given section of the graph should be deleted, but if not possible the transaction should suceed anyway.

Sequences

sequence<DeleteCommand> DeleteCommands

Used By

IDelete::availableCommands
IDelete::queueDelete
DeleteHandle::commands
sequence<DeleteReport> DeleteReports

Used By

DeleteHandle::report

Constants

const string HARD = "HARD";

String constant used as the value of an option key/value pair, implying that the given section of the graph must be deleted, otherwise the transaction should be rolled back.

const string ORPHAN = "ORPHAN";

String constant used as the value of an option key/value pair, implying that the given section of the graph should be orphaned rather than be deleted.

const string REAP = "REAP";

String constant used as the value of an option key/value pair, implying that the given section of the graph should be deleted if it would otherwise be orphaned.

const string SOFT = "SOFT";

String constant used as the value of an option key/value pair, implying that the given section of the graph should be deleted, but if not possible the transaction should suceed anyway.


Home Previous Up Next Index