Home / Function/ renegotiate() — netty Function Reference

renegotiate() — netty Function Reference

Architecture documentation for the renegotiate() function in SslHandler.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  f71c9f5a_629f_85be_10f8_6016a9d0eb02["renegotiate()"]
  d8b07a7c_44f8_c4e9_efe8_49bfae7d4af1["SslHandler"]
  f71c9f5a_629f_85be_10f8_6016a9d0eb02 -->|defined in| d8b07a7c_44f8_c4e9_efe8_49bfae7d4af1
  cc9a73ea_cfe9_c66d_c539_4a6802139e47["IllegalStateException()"]
  f71c9f5a_629f_85be_10f8_6016a9d0eb02 -->|calls| cc9a73ea_cfe9_c66d_c539_4a6802139e47
  c424fd0b_8c85_a9c8_f54b_4dd373f93722["inEventLoop()"]
  f71c9f5a_629f_85be_10f8_6016a9d0eb02 -->|calls| c424fd0b_8c85_a9c8_f54b_4dd373f93722
  007985bc_62e0_78a1_886e_513422ed7cfe["renegotiateOnEventLoop()"]
  f71c9f5a_629f_85be_10f8_6016a9d0eb02 -->|calls| 007985bc_62e0_78a1_886e_513422ed7cfe
  f0428da0_54a3_9dcb_eefb_1da6c347f719["run()"]
  f71c9f5a_629f_85be_10f8_6016a9d0eb02 -->|calls| f0428da0_54a3_9dcb_eefb_1da6c347f719
  style f71c9f5a_629f_85be_10f8_6016a9d0eb02 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/SslHandler.java lines 2198–2205

    public Future<Channel> renegotiate() {
        ChannelHandlerContext ctx = this.ctx;
        if (ctx == null) {
            throw new IllegalStateException();
        }

        return renegotiate(ctx.executor().<Channel>newPromise());
    }

Domain

Subdomains

Frequently Asked Questions

What does renegotiate() do?
renegotiate() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/SslHandler.java.
Where is renegotiate() defined?
renegotiate() is defined in handler/src/main/java/io/netty/handler/ssl/SslHandler.java at line 2198.
What does renegotiate() call?
renegotiate() calls 4 function(s): IllegalStateException, inEventLoop, renegotiateOnEventLoop, run.

Analyze Your Own Codebase

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

Try Supermodel Free