IviServiceFunResult

Represents the result of an asynchronous IVI service function call.

Parameters

V

The return value type of an IVI service function call. Can be Unit.

resultType

The result type of the call.

value

The return value of the function call, if any.

exception

The exception that was thrown, if any.

Constructors

Link copied to clipboard
constructor(value: V?)

Creates a successful function call result.

constructor(resultType: IviServiceFunResult.ResultType, exception: Exception? = null)

Creates a non-successful function call result.

Types

Link copied to clipboard

Denotes the result type of an asynchronous IVI service function call.

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

True when the service function call was successful.

Link copied to clipboard
val value: V?

Functions

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

Inherited functions