CloudPlugs REST Library  1.0.0
for Android
ListListener Class Reference

This class is a list of Listeners. It's a convenient way to handle more listeners using just one. More...

Inheritance diagram for ListListener:

Public Member Functions

void onStart ()
 
void onStop ()
 
void onPause ()
 
void onResume ()
 
void onReady ()
 
void onIdle ()
 
void onErr (Throwable t)
 
void onEvt (Object evt, Object value)
 

Detailed Description

This class is a list of Listeners. It's a convenient way to handle more listeners using just one.

Member Function Documentation

◆ onErr()

void onErr ( Throwable  t)

Invoked when an error occurs or when a callback throws an exception.

Implements Listener.

◆ onEvt()

void onEvt ( Object  evt,
Object  value 
)

Invoked on generic events.

Implements Listener.

◆ onIdle()

void onIdle ( )

Invoked when a mechanism become idle (usually a spooler).

Implements Listener.

◆ onPause()

void onPause ( )

Invoked when a mechanism is paused.

Implements Listener.

◆ onReady()

void onReady ( )

Invoked when a mechanism is ready to be used.

Implements Listener.

◆ onResume()

void onResume ( )

Invoked when a mechanism is resumed.

Implements Listener.

◆ onStart()

void onStart ( )

Invoked when a mechanism is started.

Implements Listener.

◆ onStop()

void onStop ( )

Invoked when a mechanism is stopped.

Implements Listener.