Icon

This is the documentation for an older version of Qube. The latest version of the documentation can be found here: Qube

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


class QbCallbackList

Description

Class for a list of QbCallback objects.


Anchor_TOC40892_TOC40892Instance Methods
Anchor_TOC40909_TOC40909QbCallbackList::type

Purpose

Returns the list type ID.

 

Prototype

virtual QB_INT type()

 

Parameters

None

 

Result

QB_CALLBACKLIST_PACKID

 

Comments

 

 

...


...

 class QbCommand

Description

Class for storing job query information.


Anchor_TOC40951_TOC40951Constants

QB_COMMAND_FILTERLIST

1

QB_COMMAND_JOBIDLIST

2

QB_COMMAND_WORKIDLIST

3

QB_COMMAND_GROUPLIST

4

QB_COMMAND_RESTRICTIONS

5


Anchor_TOC40963_TOC40963Instance Methods
Anchor_TOC40980_TOC40980QbCommand::type

Purpose

Return type ID of a QbCommand object.

 

Prototype

virtual QB_INT type()

 

Parameters

None

 

Result

QB_COMMAND_PACKID

 

Comments

 

 


Anchor_TOC40998_TOC40998QbCommand::encode

Purpose

Convert internal data into transmittable binary format.

 

Prototype

QB_VOID QbCommand::encode()

 

Parameters

None

 

Result

None

 

Comments

 

 


Anchor_TOC41018_TOC41018QbCommand::decode

Purpose

Converts internal data from transmittable binary format.

 

Prototype

QB_VOID QbCommand::decode()

 

Parameters

None

 

Result

None

 

Comments

 

 


Anchor_TOC41038_TOC41038QbCommand::copy

Purpose

Copy the contents of a QbCommand object into this object.

 

Prototype

QB_VOID QbCommand::copy(const QbCommand& ref)

 

Parameters

ref

Pointer to source QbCommand object.

Result

None.

 

Comments

 

 


Anchor_TOC41056_TOC41056QbCommand::operator=

Purpose

Overload '=' operator to duplicate QbCommand objects.

 

Prototype

QbCommand& QbCommand::operator=(const QbCommand& ref)

 

Parameters

ref

Pointer to source QbCommand object.

Result

Pointer to this object.

 

Comments

 

 


Anchor_TOC41079_TOC41079QbCommand::groups

Purpose

Accessor function to retrieve a host groups list.

 

Prototype

QbStringList& QbCommand::groups()

 

Parameters

None

 

Result

Pointer to list of strings containing host group names.

 

Comments

 

 


Anchor_TOC41099_TOC41099QbCommand::filters

Purpose

Accessor function to return a filter list object.

 

Prototype

QbFilterList& QbCommand::filters()

 

Parameters

None

 

Result

Pointer to a list of QbFilter objects.

 

Comments

 

 


Anchor_TOC41120_TOC41120QbCommand::jobids

Purpose

Accessor function to return a job ID list object.

 

Prototype

QbJobIdList& QbCommand::jobids()

 

Parameters

None

 

Result

Pointer to list of QbJobId objects.

 

Comments

 

 


Anchor_TOC41140_TOC41140QbCommand::workids

Purpose

Accessor function to return work ID list object.

 

Prototype

QbWorkIdList& QbCommand::workids()

 

Parameters

None

 

Result

Pointer to list of QbWorkId objects.

 

Comments

 

 


Anchor_TOC41161_TOC41161QbCommand::restrictions

Purpose

Accessor function to set and retrieve restrictions.

 

Prototype

QB_BOOL QbCommand::restrictions()QB_VOID QbCommand::restrictions(QB_BOOL val)

 

Parameters

val

Restrictions

Result

 

 

Comments

 

 

...


class QbHistoryList

Description

Class for a list of QbHistory objects.


Anchor_TOC41210_TOC41210Instance Methods
Anchor_TOC41227_TOC41227QbHistoryList::type

Purpose

Returns the list type ID.

 

Prototype

virtual QB_INT type()

 

Parameters

None

 

Result

QB_HISTORYLIST_PACKID

 

Comments

 

 


Anchor_TOC41250_TOC41250class QbJobList

Description

Class for a list of QbJobs


Anchor_TOC41268_TOC41268Instance Methods
Anchor_TOC41285_TOC41285QbJobList::exists

Purpose

Determines if a particular job ID has a corresponding QbJob in the list.

 

Prototype

QB_BOOL QbJobList::exists(QB_INT jobid)

 

Parameters

jobid

The job's ID number.

Result

QB_TRUE if the job is in the listQB_FALSE otherwise

 

Comments

 

 


Anchor_TOC41305_TOC41305QbJobList::type

Purpose

Returns the list type ID.

 

Prototype

virtual QB_INT type()

 

Parameters

None

 

Result

QB_JOBLIST_PACKID

 

Comments

 

 

...


class QbLogList

Description

Class for a list of QbLog objects.


Anchor_TOC41342_TOC41342Instance Methods
Anchor_TOC41359_TOC41359QbLogList::type

Purpose

Returns the list type ID.

 

Prototype

virtual QB_INT type()

 

Parameters

None

 

Result

QB_LOGLIST_PACKID

 

Comments

 

 

...


...

 class QbQuery

Description

Class for containing query filters and fields.


Anchor_TOC41394_TOC41394Constants

QB_QUERY_FILTERLIST

1

QB_QUERY_FIELDSLIST

2


Anchor_TOC41406_TOC41406Instance Methods
Anchor_TOC41423_TOC41423QbQuery::type

Purpose

Returns the type ID of a QbQuery object.

 

Prototype

virtual QB_INT type()

 

Parameters

None

 

Result

QB_QUERY_PACKID

 

Comments

 

 


Anchor_TOC41439_TOC41439QbQuery::encode

Purpose

Convert internal data to transmittable binary format.

 

Prototype

QB_VOID QbQuery::encode()

 

Parameters

None

 

Result

None

 

Comments

 

 


Anchor_TOC41457_TOC41457QbQuery::decode

Purpose

Convert internal data from transmittable binary format.

 

Prototype

QB_VOID QbQuery::decode()

 

Parameters

None

 

Result

None

 

Comments

 

 


Anchor_TOC41475_TOC41475QbQuery::copy

Purpose

Copies the contents of a QbQuery object to this object.

 

Prototype

QB_VOID QbQuery::copy(const QbQuery& ref)

 

Parameters

ref

Pointer to source QbQuery object.

Result

None

 

Comments

 

 


Anchor_TOC41491_TOC41491QbQuery::operator =

Purpose

Overloads '=' operator to duplicate QbQuery objects.

 

Prototype

QbQuery& QbQuery::operator=(const QbQuery& ref)

 

Parameters

ref

Pointer to source QbQuery object.

Result

Returns pointer to this object.

 

Comments

 

 


Anchor_TOC41513_TOC41513QbQuery::filters

Purpose

Accessor function to retrieve query fields.

 

Prototype

QbFilterList& QbQuery::filters()

 

Parameters

None

 

Result

Pointer to a list of query filters.

 

Comments

 

 


Anchor_TOC41532_TOC41532QbQuery::fields

Purpose

Accessor function to retrieve query fields.

 

Prototype

QbFieldList& QbQuery::fields()

 

Parameters

None

 

Result

Pointer to a list of query fields.

 

Comments