DependencyGraph

Represents a graph showing the dependencies between services and components in your application architecture.

Types

Link copied to clipboard
class Builder
Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val edges: List<Edge>?

An array of edges in the dependency graph, where each edge represents a connection or dependency between two nodes.

Link copied to clipboard
val nodes: List<Node>?

An array of nodes in the dependency graph, where each node represents a service or component.

Functions

Link copied to clipboard
inline fun copy(block: DependencyGraph.Builder.() -> Unit = {}): DependencyGraph
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String