Class is used for managing async route listeners. More...
Inheritance diagram for com.navigine.idl.java.RouteSession:Public Member Functions | |
| abstract void | addRouteListener (AsyncRouteListener listener) |
| Method is used to add AsyncRouteListener class element which will notify async route events. | |
| abstract void | removeRouteListener (AsyncRouteListener listener) |
| Method is used for removing previously added AsyncRouteListener class element. | |
| abstract boolean | isValid () |
Class is used for managing async route listeners.
Referenced from AsyncRouteManager.
Definition at line 17 of file RouteSession.java.
|
abstract |
Method is used to add AsyncRouteListener class element which will notify async route events.
| listener | Corresponding AsyncRouteListener class. |
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.RouteSessionBinding.
|
abstract |
Tells if this RouteSession is valid or not. Any other method (except for this one) called on an invalid RouteSession will throw java.lang.RuntimeException.
Reimplemented in com.navigine.idl.java.internal.RouteSessionBinding.
|
abstract |
Method is used for removing previously added AsyncRouteListener class element.
| listener | Corresponding AsyncRouteListener class to remove. |
Java code snippet:
Kotlin code snippet:
Reimplemented in com.navigine.idl.java.internal.RouteSessionBinding.