OpenVDB  9.0.1
Public Member Functions | List of all members
NullInterrupter Struct Reference

Base class for interrupters. More...

#include <openvdb/util/NullInterrupter.h>

Public Member Functions

 NullInterrupter ()=default
 Default constructor. More...
 
virtual ~NullInterrupter ()=default
 
virtual void start (const char *=nullptr)
 
virtual void end ()
 Signal the end of an interruptible operation. More...
 
virtual bool wasInterrupted (int=-1)
 
virtual NullInterrupterinterrupter () final
 Convenience method to return a reference to the base class from a derived class. More...
 

Detailed Description

Base class for interrupters.

The host application calls start() at the beginning of an interruptible operation, end() at the end of the operation, and wasInterrupted() periodically during the operation. If any call to wasInterrupted() returns true, the operation will be aborted.

Note
This interrupter was not virtual in a previous implementation, so it could be compiled out, however it remains important to not call wasInterrupter() too frequently so as to balance performance and the ability to interrupt an operation.

Constructor & Destructor Documentation

NullInterrupter ( )
default

Default constructor.

virtual ~NullInterrupter ( )
virtualdefault

Member Function Documentation

virtual void end ( )
inlinevirtual

Signal the end of an interruptible operation.

virtual NullInterrupter& interrupter ( )
inlinefinalvirtual

Convenience method to return a reference to the base class from a derived class.

virtual void start ( const char *  = nullptr)
inlinevirtual

Signal the start of an interruptible operation.

Parameters
namean optional descriptive name for the operation
virtual bool wasInterrupted ( int  = -1)
inlinevirtual

Check if an interruptible operation should be aborted.

Parameters
percentan optional (when >= 0) percentage indicating the fraction of the operation that has been completed
Note
this method is assumed to be thread-safe.