Show:

Quick and dirty impl of Base class.

Constructor

Base

()

Index

Methods

_callChain

(
  • wat
  • args
)
protected

Calls a method of each class, which is being present in the hierarchy starting from parent to the child.

Parameters:

  • wat String

    The method, which should be invoked

  • args Object | Array

    The arguments with which the method should be invoked

destroy

()

Calls the destructor method of each class which extends Base starting from the parent to the child.

init

(
  • config
)

Calls the initializer method of each class which extends Base starting from the parent to the child. Will pass the configuration object to each initializer method.

Parameters:

  • config Object

    Configuration object