Registry / networking / grpc-netty

grpc-netty

JSON →
library1.80.0javamavenunverified

Netty-based transport implementation for gRPC, enabling high-performance RPC communication.

<dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty</artifactId> <version>1.80.0</version> </dependency>
INSTALL
IMPORT
SIG · GRPC-NETTY
G
grpc-netty
networkingjavav1.80.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

NettyChannelBuilder
io.grpc.netty.NettyChannelBuilder

Minimal gRPC Netty channel creation example

import io.grpc.ManagedChannel; import io.grpc.netty.NettyChannelBuilder; public class Example { public static void main(String[] args) { ManagedChannel channel = NettyChannelBuilder.forAddress("localhost", 8080) .usePlaintext() .build(); System.out.println("Channel created"); } }
Debug
Known issues
gotchaNetty version conflicts can occur if other dependencies bring different Netty versions.
fix
Use io.grpc:grpc-netty-shaded to avoid Netty version conflicts.
affects: >=1.0
Upgrade
Version history
1.80.0latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
25 hits · last 30 days
node
22
OpenAI (training)
1
Resources
grpc-netty — mvn dependency:get grpc-netty · libregistry