Home / Class/ FormattingTuple Class — netty Architecture

FormattingTuple Class — netty Architecture

Architecture documentation for the FormattingTuple class in FormattingTuple.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  4379545d_f3bd_512a_1c47_37351eab3a7d["FormattingTuple"]
  9ee8be94_e2fd_1e67_ed97_e827d77125e5["FormattingTuple.java"]
  4379545d_f3bd_512a_1c47_37351eab3a7d -->|defined in| 9ee8be94_e2fd_1e67_ed97_e827d77125e5
  c1d7c081_3b9f_902b_fd59_3d1f8c3b7fc8["FormattingTuple()"]
  4379545d_f3bd_512a_1c47_37351eab3a7d -->|method| c1d7c081_3b9f_902b_fd59_3d1f8c3b7fc8
  7158ab2c_5724_8518_43c6_a85def66f1f1["String()"]
  4379545d_f3bd_512a_1c47_37351eab3a7d -->|method| 7158ab2c_5724_8518_43c6_a85def66f1f1
  9dff0e78_0a05_54de_098c_f551bc64d89b["Throwable()"]
  4379545d_f3bd_512a_1c47_37351eab3a7d -->|method| 9dff0e78_0a05_54de_098c_f551bc64d89b

Relationship Graph

Source Code

common/src/main/java/io/netty/util/internal/logging/FormattingTuple.java lines 45–62

public final class FormattingTuple {

    private final String message;
    private final Throwable throwable;

    public FormattingTuple(String message, Throwable throwable) {
        this.message = message;
        this.throwable = throwable;
    }

    public String getMessage() {
        return message;
    }

    public Throwable getThrowable() {
        return throwable;
    }
}

Frequently Asked Questions

What is the FormattingTuple class?
FormattingTuple is a class in the netty codebase, defined in common/src/main/java/io/netty/util/internal/logging/FormattingTuple.java.
Where is FormattingTuple defined?
FormattingTuple is defined in common/src/main/java/io/netty/util/internal/logging/FormattingTuple.java at line 45.

Analyze Your Own Codebase

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

Try Supermodel Free