ThreadWeaver::QueuePolicy

Search for usage in LXR

ThreadWeaver::QueuePolicy Class Referenceabstract

#include <queuepolicy.h>

Inheritance diagram for ThreadWeaver::QueuePolicy:

Public Member Functions

virtual bool canRun (JobPointer)=0
 
virtual void destructed (JobInterface *job)=0
 
virtual void free (JobPointer)=0
 
virtual void release (JobPointer)=0
 

Detailed Description

QueuePolicy is an interface for customizations of the queueing behaviour of jobs.

A job can have a number of queue policies assigned. In that case, the job is only executed when the method canRun() of all assigned policies return true. For every call to canRun() that returns true, it is guaranteed that the method free() or the method release() is called. Calling free() means the job has been executed, while calling release() means the job was not executed for external reasons, and will be tried later on.

As an example, dependencies can be implemented using a QueuePolicy: canRun() returns true when the job has no unresolved dependencies. free() and release() are empty.

A job can have multiple queue policies assigned, and will only be executed if all of them return true from canRun() within the same execution attempt. Jobs only keep a reference to the QueuePolicy. Therefore, the same policy object can be assigned to multiple jobs and this way control the way all those jobs are executed. Jobs never assume ownership of their assigned queue policies.

Definition at line 38 of file queuepolicy.h.

Constructor & Destructor Documentation

◆ ~QueuePolicy()

virtual ThreadWeaver::QueuePolicy::~QueuePolicy ( )
inlinevirtual

Definition at line 41 of file queuepolicy.h.

Member Function Documentation

◆ canRun()

virtual bool ThreadWeaver::QueuePolicy::canRun ( JobPointer )
pure virtual

canRun() is called before the job is executed.

The job will only be executed if canRun() returns true.

Implemented in ThreadWeaver::DependencyPolicy, and ThreadWeaver::ResourceRestrictionPolicy.

◆ destructed()

virtual void ThreadWeaver::QueuePolicy::destructed ( JobInterface * job)
pure virtual

destructing() is called when a Job that has this queue policy assigned gets destructed.

Implemented in ThreadWeaver::DependencyPolicy, and ThreadWeaver::ResourceRestrictionPolicy.

◆ free()

virtual void ThreadWeaver::QueuePolicy::free ( JobPointer )
pure virtual

free() is called after the job has been executed.

It is guaranteed that free is called only after canRun() returned true at an earlier time.

Implemented in ThreadWeaver::DependencyPolicy, and ThreadWeaver::ResourceRestrictionPolicy.

◆ release()

virtual void ThreadWeaver::QueuePolicy::release ( JobPointer )
pure virtual

release() is called if canRun() returned true, but the job has not been executed for external reasons.

For example, a second QueuePolicy could have returned false from canRun() for the same job.

Implemented in ThreadWeaver::DependencyPolicy, and ThreadWeaver::ResourceRestrictionPolicy.


The documentation for this class was generated from the following file:
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:31 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.