Home / Function/ Replace() — fiber Function Reference

Replace() — fiber Function Reference

Architecture documentation for the Replace() function in client.go from the fiber codebase.

Entity Profile

Dependency Diagram

graph TD
  a3219b95_fe7b_4c30_3c38_c0a4ffd525b0["Replace()"]
  0a898b85_5e70_235c_a863_b41e3d48af64["client.go"]
  a3219b95_fe7b_4c30_3c38_c0a4ffd525b0 -->|defined in| 0a898b85_5e70_235c_a863_b41e3d48af64
  style a3219b95_fe7b_4c30_3c38_c0a4ffd525b0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

client/client.go lines 815–828

func Replace(c *Client) func() {
	replaceMu.Lock()
	defer replaceMu.Unlock()

	oldClient := defaultClient
	defaultClient = c

	return func() {
		replaceMu.Lock()
		defer replaceMu.Unlock()

		defaultClient = oldClient
	}
}

Domain

Subdomains

Defined In

Frequently Asked Questions

What does Replace() do?
Replace() is a function in the fiber codebase, defined in client/client.go.
Where is Replace() defined?
Replace() is defined in client/client.go at line 815.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free