Skip to content

Instantly share code, notes, and snippets.

@michalszynkiewicz
Created June 22, 2021 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michalszynkiewicz/cd5615b762c35d0b52ae2de3248f9cfb to your computer and use it in GitHub Desktop.
Save michalszynkiewicz/cd5615b762c35d0b52ae2de3248f9cfb to your computer and use it in GitHub Desktop.
package com.example.todos;
import io.quarkus.grpc.runtime.MutinyService;
@javax.annotation.Generated(
value = "by Mutiny Grpc generator",
comments = "Source: todos.proto")
public interface Todos extends MutinyService {
io.smallrye.mutiny.Uni<com.example.todos.TodosOuterClass.Void> add(com.example.todos.TodosOuterClass.Todo request);
io.smallrye.mutiny.Uni<com.example.todos.TodosOuterClass.Void> markDone(com.example.todos.TodosOuterClass.Todo request);
io.smallrye.mutiny.Multi<com.example.todos.TodosOuterClass.Todo> watch(com.example.todos.TodosOuterClass.Void request);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment