Home / Function/ waitForRunning() — netty Function Reference

waitForRunning() — netty Function Reference

Architecture documentation for the waitForRunning() function in UDTClientServerConnectionTest.java from the netty codebase.

Function java Buffer Search calls 1 called by 4

Entity Profile

Dependency Diagram

graph TD
  632a767d_e337_a2b4_e179_e0d936c7c46f["waitForRunning()"]
  04943c9a_8ea1_0974_cf09_4ca1510eeef0["Client"]
  632a767d_e337_a2b4_e179_e0d936c7c46f -->|defined in| 04943c9a_8ea1_0974_cf09_4ca1510eeef0
  399d2beb_f25f_0671_070a_9d1160f03487["waitForRunning()"]
  399d2beb_f25f_0671_070a_9d1160f03487 -->|calls| 632a767d_e337_a2b4_e179_e0d936c7c46f
  098a2fa4_b848_c4c1_4779_df3351dcad97["connection()"]
  098a2fa4_b848_c4c1_4779_df3351dcad97 -->|calls| 632a767d_e337_a2b4_e179_e0d936c7c46f
  96b8c4e6_d3c3_17d6_a8c3_a91250f3642c["run()"]
  96b8c4e6_d3c3_17d6_a8c3_a91250f3642c -->|calls| 632a767d_e337_a2b4_e179_e0d936c7c46f
  15c7489b_6c9b_a2f1_adb8_b6985fa97a5b["run()"]
  15c7489b_6c9b_a2f1_adb8_b6985fa97a5b -->|calls| 632a767d_e337_a2b4_e179_e0d936c7c46f
  399d2beb_f25f_0671_070a_9d1160f03487["waitForRunning()"]
  632a767d_e337_a2b4_e179_e0d936c7c46f -->|calls| 399d2beb_f25f_0671_070a_9d1160f03487
  style 632a767d_e337_a2b4_e179_e0d936c7c46f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

testsuite/src/main/java/io/netty/testsuite/transport/udt/UDTClientServerConnectionTest.java lines 128–135

        void waitForRunning(final boolean isRunning) throws Exception {
            for (int k = 0; k < WAIT_COUNT; k++) {
                if (isRunning == this.isRunning) {
                    return;
                }
                Thread.sleep(WAIT_SLEEP);
            }
        }

Domain

Subdomains

Frequently Asked Questions

What does waitForRunning() do?
waitForRunning() is a function in the netty codebase, defined in testsuite/src/main/java/io/netty/testsuite/transport/udt/UDTClientServerConnectionTest.java.
Where is waitForRunning() defined?
waitForRunning() is defined in testsuite/src/main/java/io/netty/testsuite/transport/udt/UDTClientServerConnectionTest.java at line 128.
What does waitForRunning() call?
waitForRunning() calls 1 function(s): waitForRunning.
What calls waitForRunning()?
waitForRunning() is called by 4 function(s): connection, run, run, waitForRunning.

Analyze Your Own Codebase

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

Try Supermodel Free