getServiceOrNull

fun <T> getServiceOrNull(serviceClass: Class<T>): T?(source)

Returns the service registered in registerService or null, if no service is registered for the requested type.

Parameters

T

The type of the service

serviceClass

Java moment. The Java class of the service interface


inline fun <T> getServiceOrNull(): T?(source)

Returns the service registered in registerService or null, if no service is registered for the requested type.

Parameters

T

The type of the service interface