onCompletion

protected fun <T> onCompletion(response: T, withLock: () -> OnSuccess<T>??): Boolean(source)

Sets the job state to State.Success and invokes OnSuccess returned by withLock with provided response. Does nothing if the job is completed or completing.

Implementations must not call invokeOnCompletion from within the withLock lambda. It will result in a deadlock.

Return

true if it executed successfully, false if the job is completed or completing.