All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dagger.grpc.server.GrpcService Maven / Gradle / Ivy

There is a newer version: 2.52
Show newest version
/*
 * Copyright (C) 2016 The Dagger Authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package dagger.grpc.server;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

/**
 * Annotates a class that implements a gRPC service.
 *
 * 

Generates several types when annotating a class {@code Foo}: * *

    *
  • Interfaces {@code FooComponent} and {@code FooComponent.Factory}. *
  • {@linkplain dagger.Module Modules} {@code FooGrpcProxyModule} and {@code * FooGrpcServiceModule}. *
* *

To use these types to configure a server: * *

    *
  1. Create a {@linkplain dagger.Subcomponent subcomponent} that implements {@code FooComponent} * and installs {@code FooGrpcServiceModule}. *
  2. Install {@link NettyServerModule} or another {@link ServerModule} subclass and {@code * FooGrpcProxyModule} into your {@link javax.inject.Singleton @Singleton} {@linkplain * dagger.Component component}. *
  3. Bind an implementation of {@code FooComponent.Factory} in your {@link * javax.inject.Singleton @Singleton} {@linkplain dagger.Component component}. The * implementation will typically inject the {@link javax.inject.Singleton @Singleton} * {@linkplain dagger.Component component} and call subcomponent factory methods to instantiate * the correct subcomponent. *
*/ @Documented @Target(ElementType.TYPE) public @interface GrpcService { /** The class that gRPC generates from the proto service definition. */ Class grpcClass(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy