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

com.google.protobuf.RpcCallback Maven / Gradle / Ivy

The newest version!
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc.  All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd

package com.google.protobuf;

/**
 * Interface for an RPC callback, normally called when an RPC completes. {@code ParameterType} is
 * normally the method's response message type.
 *
 * 

Starting with version 2.3.0, RPC implementations should not try to build on this, but should * instead provide code generator plugins which generate code specific to the particular RPC * implementation. This way the generated code can be more appropriate for the implementation in use * and can avoid unnecessary layers of indirection. * * @author [email protected] Kenton Varda */ public interface RpcCallback { void run(ParameterType parameter); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy