RoutesRenderedResult

class RoutesRenderedResult

Class describing the result of routes rendering.

Parameters

successfullyRenderedRouteIds

ids of the routes that were successfully rendered (correspond to NavigationRoute.id)

renderingCancelledRouteIds

ids of the routes whose rendering was cancelled (correspond to NavigationRoute.id). This may happen, for example, when a newer rendering operation had been queued before the previous one finished.

successfullyClearedRouteIds

ids of the routes that were successfully cleared (correspond to NavigationRoute.id)

clearingCancelledRouteIds

ids of the routes whose clearance was cancelled (correspond to NavigationRoute.id). This may happen, for example, when a newer rendering operation had been queued before the previous one finished.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean

Indicates whether some other object is "equal to" this one.

Link copied to clipboard
open override fun hashCode(): Int

Returns a hash code value for the object.

Link copied to clipboard
open override fun toString(): String

Returns a string representation of the object.

Properties

Link copied to clipboard
val clearingCancelledRouteIds: Set<String>
Link copied to clipboard
val renderingCancelledRouteIds: Set<String>
Link copied to clipboard
val successfullyClearedRouteIds: Set<String>
Link copied to clipboard
val successfullyRenderedRouteIds: Set<String>