-
appCallback(err, appObj)
-
The application callback is called upon completion of a method which is meant to deliver an application object. If the `err` parameter is null, than the method completed successfully.
Parameters:
Name |
Type |
Argument |
Description |
err |
Error
|
<nullable>
|
Error object. If it is null, than assume no error has occurred. |
appObj |
Object
|
<nullable>
|
Application object. Will be null if an error has occurred. |
- Source:
-
connectionCallback(err, connectionObj)
-
The connection callback is called upon completion of a method which is meant to deliver a connection object. If the `err` parameter is null, than the method completed successfully.
Parameters:
Name |
Type |
Argument |
Description |
err |
Error
|
<nullable>
|
Error object. If it is null, than assume no error has occurred. |
connectionObj |
Object
|
<nullable>
|
Connection object. Will be null if an error has occurred. |
- Source:
-
nextCallback(err)
-
The next callback is called upon completion of a method. If the `err` parameter is null, than the method completed successfully.
Parameters:
Name |
Type |
Argument |
Description |
err |
Error
|
<nullable>
|
Optional Error object. If it is null, than assume no error has occurred. |
- Source:
-
roomCallback(err, roomObj)
-
The room callback is called upon completion of a method which is meant to deliver a room object. If the `err` parameter is null, than the method completed successfully.
Parameters:
Name |
Type |
Argument |
Description |
err |
Error
|
<nullable>
|
Error object. If it is null, than assume no error has occurred. |
roomObj |
Object
|
<nullable>
|
Room object. Will be null if an error has occurred. |
- Source: