Learn R Programming

bdpar (version 1.0.1)

SerialPipe: Class implementing a default pipelining proccess.

Description

This SerialPipe class inherits from the TypePipe class. Includes the pipeAll method which provides a default pipelining implementation.

Usage

SerialPipe

Arguments

Constructor

SerialPipe$new()

Inherit

This class inherits from TypePipe and implements the pipeAll abstract function.

Methods

  • pipeAll: implementation of the pipeAll function provided by the super class (TypePipe). In this case, the pipeAll function is called so that the default pipelining is executed.

    • Usage: pipeAll(instance)

    • Value: The preprocessed Instance.

    • Arguments:

      • instance: (Instance) The Instance that is going to be processed.

Details

This class uses the default implementation provided by its parent class (TypePipe) and handles all the unexpected errors that may appear during the execution of the pipelining process.

See Also

Instance, TypePipe