Home / Class/ CompleteChannelFutureImpl Class — netty Architecture

CompleteChannelFutureImpl Class — netty Architecture

Architecture documentation for the CompleteChannelFutureImpl class in CompleteChannelFutureTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  06634191_87e6_eed5_e38a_5ff24c6a6717["CompleteChannelFutureImpl"]
  1d905be3_60d5_c209_a3d8_782e3a117b1d["CompleteChannelFutureTest.java"]
  06634191_87e6_eed5_e38a_5ff24c6a6717 -->|defined in| 1d905be3_60d5_c209_a3d8_782e3a117b1d
  27b6f7f4_f700_e2bc_7cde_3b067fd25a56["CompleteChannelFutureImpl()"]
  06634191_87e6_eed5_e38a_5ff24c6a6717 -->|method| 27b6f7f4_f700_e2bc_7cde_3b067fd25a56
  0aadbf0e_5256_dbdc_757c_a46375e8e064["Throwable()"]
  06634191_87e6_eed5_e38a_5ff24c6a6717 -->|method| 0aadbf0e_5256_dbdc_757c_a46375e8e064
  75caf726_5aa6_1dc7_0d14_9aa69d9ca832["isSuccess()"]
  06634191_87e6_eed5_e38a_5ff24c6a6717 -->|method| 75caf726_5aa6_1dc7_0d14_9aa69d9ca832
  d0e9b095_50b4_90b5_fcd0_f75779168a46["ChannelFuture()"]
  06634191_87e6_eed5_e38a_5ff24c6a6717 -->|method| d0e9b095_50b4_90b5_fcd0_f75779168a46

Relationship Graph

Source Code

transport/src/test/java/io/netty/channel/CompleteChannelFutureTest.java lines 66–91

    private static class CompleteChannelFutureImpl extends CompleteChannelFuture {

        CompleteChannelFutureImpl(Channel channel) {
            super(channel, null);
        }

        @Override
        public Throwable cause() {
            throw new UnsupportedOperationException("cause is not supported for " + getClass().getName());
        }

        @Override
        public boolean isSuccess() {
            throw new UnsupportedOperationException("isSuccess is not supported for " + getClass().getName());
        }

        @Override
        public ChannelFuture sync() {
            throw new UnsupportedOperationException("sync is not supported for " + getClass().getName());
        }

        @Override
        public ChannelFuture syncUninterruptibly() {
            throw new UnsupportedOperationException("syncUninterruptibly is not supported for " + getClass().getName());
        }
    }

Frequently Asked Questions

What is the CompleteChannelFutureImpl class?
CompleteChannelFutureImpl is a class in the netty codebase, defined in transport/src/test/java/io/netty/channel/CompleteChannelFutureTest.java.
Where is CompleteChannelFutureImpl defined?
CompleteChannelFutureImpl is defined in transport/src/test/java/io/netty/channel/CompleteChannelFutureTest.java at line 66.

Analyze Your Own Codebase

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

Try Supermodel Free