resolve
abstract fun resolve(prev: DependencyInitializer, current: DependencyInitializer): DependencyConflictResult(source)
Resolves a conflict between two dependency creation functions.
This method determines the appropriate DependencyConflictResult
for handling the conflict between the previously registered dependency creation function and the currently provided one.
Return
The result of the conflict resolution, encapsulated in a DependencyConflictResult
.
Parameters
prev
The previously registered dependency creation function.
current
The newly provided dependency creation function.