Package-level declarations

Types

Link copied to clipboard

Contains key of semantic attributes.

Link copied to clipboard

Contains category of standard events.

Link copied to clipboard

Contains key of contexts.

Link copied to clipboard
open class AirfluxError(val code: AirfluxErrorCode, val message: String) : Exception

Holds every details of error.

Link copied to clipboard

Holds type code of error.

Link copied to clipboard

Holds every information of inference request.

Link copied to clipboard

Contains key of parameters.

Link copied to clipboard

Contains key of user’s informations.

Link copied to clipboard
fun interface BiConsumer<T, U>

Represents an operation that accepts two input arguments and returns no result. This is the two-arity specialization of Consumer. Unlike most other functional interfaces, BiConsumer is expected to operate via side-effects.

Link copied to clipboard
fun interface Consumer<T>

Represents an operation that accepts a single input argument and returns no result. Unlike most other functional interfaces, Consumer is expected to operate via side-effects.