Medical Imaging Interaction Toolkit
2016.11.0
Medical Imaging Interaction Toolkit
|
#include <berrySafeRunnable.h>
Public Member Functions | |
SafeRunnable (const QString &message="") | |
void | HandleException (const ctkException &e) override |
Public Member Functions inherited from berry::ISafeRunnable | |
virtual void | Run ()=0 |
Public Member Functions inherited from berry::Object | |
virtual QString | GetClassName () const |
virtual Reflection::TypeInfo | GetTypeInfo () const |
virtual QList< Reflection::TypeInfo > | GetSuperclasses () const |
virtual void | Delete () |
QDebug | Print (QDebug os, Indent Indent=0) const |
virtual QString | ToString () const |
virtual uint | HashCode () const |
virtual bool | operator< (const Object *) const |
void | Register () const |
void | UnRegister (bool del=true) const |
int | GetReferenceCount () const |
void | SetReferenceCount (int) |
void | AddDestroyListener (const MessageAbstractDelegate<> &delegate) const |
void | RemoveDestroyListener (const MessageAbstractDelegate<> &delegate) const |
virtual bool | operator== (const Object *) const |
Static Public Member Functions | |
static bool | GetIgnoreErrors () |
static void | SetIgnoreErrors (bool flag) |
static ISafeRunnableRunner::Pointer | GetRunner () |
static void | SetRunner (ISafeRunnableRunner::Pointer runner) |
static void | Run (ISafeRunnable::Pointer runnable) |
Static Public Member Functions inherited from berry::ISafeRunnable | |
static const char * | GetStaticClassName () |
Static Public Member Functions inherited from berry::Object | |
static const char * | GetStaticClassName () |
static Reflection::TypeInfo | GetStaticTypeInfo () |
static QList< Reflection::TypeInfo > | GetStaticSuperclasses () |
Additional Inherited Members | |
Public Types inherited from berry::ISafeRunnable | |
typedef berry::ISafeRunnable | Self |
typedef berry::SmartPointer< Self > | Pointer |
typedef berry::SmartPointer< const Self > | ConstPointer |
typedef berry::WeakPointer< Self > | WeakPtr |
typedef berry::WeakPointer< const Self > | ConstWeakPtr |
Public Types inherited from berry::Object | |
typedef Object | Self |
typedef berry::SmartPointer< Self > | Pointer |
typedef berry::SmartPointer< const Self > | ConstPointer |
typedef berry::WeakPointer< Self > | WeakPtr |
typedef berry::WeakPointer< const Self > | ConstWeakPtr |
Protected Member Functions inherited from berry::Object | |
Object () | |
virtual | ~Object () |
virtual QDebug | PrintSelf (QDebug os, Indent indent) const |
virtual QDebug | PrintHeader (QDebug os, Indent indent) const |
virtual QDebug | PrintTrailer (QDebug os, Indent indent) const |
Protected Attributes inherited from berry::Object | |
QAtomicInt | m_ReferenceCount |
QMutex | m_ReferenceCountLock |
Implements a default implementation of ISafeRunnable. The default implementation of HandleException
opens a dialog to show any errors as they accumulate.
This may be executed on any thread.
Definition at line 33 of file berrySafeRunnable.h.
berry::SafeRunnable::SafeRunnable | ( | const QString & | message = "" | ) |
Creates a new instance of SafeRunnable with the given error message.
message | the error message to use |
Definition at line 101 of file berrySafeRunnable.cpp.
|
static |
Flag to avoid interactive error dialogs during automated testing.
Definition at line 124 of file berrySafeRunnable.cpp.
|
static |
Returns the safe runnable runner.
Definition at line 134 of file berrySafeRunnable.cpp.
Referenced by Run().
|
overridevirtual |
Handles an exception thrown by this runnable's run
method. The processing done here should be specific to the particular usecase for this runnable. Generalized exception processing (e.g., logging in the platform's log) is done by the Platform's run mechanism.
exception | an exception which occurred during processing the body of this runnable (i.e., in run() ) |
Implements berry::ISafeRunnable.
Definition at line 107 of file berrySafeRunnable.cpp.
References BERRY_ERROR.
|
static |
Runs the given safe runnable using the safe runnable runner. This is a convenience method, equivalent to: SafeRunnable::GetRunner()->Run(runnable)
.
runnable | the runnable to run |
Definition at line 148 of file berrySafeRunnable.cpp.
References GetRunner().
|
static |
Flag to avoid interactive error dialogs during automated testing.
flag | set to true if errors should be ignored |
Definition at line 129 of file berrySafeRunnable.cpp.
|
static |
Sets the safe runnable runner.
runner | the runner to set, or null to reset to the default runner |
Definition at line 143 of file berrySafeRunnable.cpp.