Registry / networking / grpc-api

grpc-api

JSON →
library1.80.0javamavenunverified

gRPC API provides the core API classes for building gRPC services and clients in Java.

<dependency> <groupId>io.grpc</groupId> <artifactId>grpc-api</artifactId> <version>1.80.0</version> </dependency>
INSTALL
IMPORT
SIG · GRPC-API
G
grpc-api
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.

ManagedChannelBuilder
io.grpc.ManagedChannelBuilder

Creates a gRPC channel to connect to a remote service.

import io.grpc.ManagedChannel; import io.grpc.ManagedChannelBuilder; public class Quickstart { public static void main(String[] args) { ManagedChannel channel = ManagedChannelBuilder.forAddress("localhost", 8080) .usePlaintext() .build(); System.out.println("Channel created: " + channel); channel.shutdown(); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.80.0latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
8
Resources
grpc-api — mvn dependency:get grpc-api · libregistry