Home / Function/ Unmarshaller() — netty Function Reference

Unmarshaller() — netty Function Reference

Architecture documentation for the Unmarshaller() function in ThreadLocalUnmarshallerProvider.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  b94dc07f_333a_1e5c_e34e_f62cc2817a35["Unmarshaller()"]
  89d992a7_eb53_37b7_6e5f_6f9584509d7a["ThreadLocalUnmarshallerProvider"]
  b94dc07f_333a_1e5c_e34e_f62cc2817a35 -->|defined in| 89d992a7_eb53_37b7_6e5f_6f9584509d7a
  style b94dc07f_333a_1e5c_e34e_f62cc2817a35 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-marshalling/src/main/java/io/netty/handler/codec/marshalling/ThreadLocalUnmarshallerProvider.java lines 47–55

    @Override
    public Unmarshaller getUnmarshaller(ChannelHandlerContext ctx) throws Exception {
        Unmarshaller unmarshaller = unmarshallers.get();
        if (unmarshaller == null) {
            unmarshaller = factory.createUnmarshaller(config);
            unmarshallers.set(unmarshaller);
        }
        return unmarshaller;
    }

Domain

Subdomains

Frequently Asked Questions

What does Unmarshaller() do?
Unmarshaller() is a function in the netty codebase, defined in codec-marshalling/src/main/java/io/netty/handler/codec/marshalling/ThreadLocalUnmarshallerProvider.java.
Where is Unmarshaller() defined?
Unmarshaller() is defined in codec-marshalling/src/main/java/io/netty/handler/codec/marshalling/ThreadLocalUnmarshallerProvider.java at line 47.

Analyze Your Own Codebase

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

Try Supermodel Free