enqueue

fun <R> suspend () -> R.enqueue(callback: AFCallback<R>, scope: CoroutineScope = AFCoreScope)
fun <A, R> suspend (A) -> R.enqueue(a: A, callback: AFCallback<R>, scope: CoroutineScope = AFCoreScope)
fun <A, B, R> suspend (A, B) -> R.enqueue(a: A, b: B, callback: AFCallback<R>, scope: CoroutineScope = AFCoreScope)
fun <A, B, C, R> suspend (A, B, C) -> R.enqueue(a: A, b: B, c: C, callback: AFCallback<R>, scope: CoroutineScope = AFCoreScope)
fun <A, B, C, D, R> suspend (A, B, C, D) -> R.enqueue(a: A, b: B, c: C, d: D, callback: AFCallback<R>, scope: CoroutineScope = AFCoreScope)
fun <A, B, C, D, E, F, R> suspend (A, B, C, D, E, F) -> R.enqueue(a: A, b: B, c: C, d: D, e: E, f: F, callback: AFCallback<R>, scope: CoroutineScope = AFCoreScope)