File indexing completed on 2025-10-31 09:18:32
0001 
0002 
0003 
0004 
0005 
0006 
0007 
0008 
0009 
0010 #ifndef UPB_REFLECTION_METHOD_DEF_H_
0011 #define UPB_REFLECTION_METHOD_DEF_H_
0012 
0013 #include "upb/reflection/common.h"
0014 
0015 
0016 #include "upb/port/def.inc"
0017 
0018 #ifdef __cplusplus
0019 extern "C" {
0020 #endif
0021 
0022 UPB_API bool upb_MethodDef_ClientStreaming(const upb_MethodDef* m);
0023 const char* upb_MethodDef_FullName(const upb_MethodDef* m);
0024 bool upb_MethodDef_HasOptions(const upb_MethodDef* m);
0025 int upb_MethodDef_Index(const upb_MethodDef* m);
0026 UPB_API const upb_MessageDef* upb_MethodDef_InputType(const upb_MethodDef* m);
0027 UPB_API const char* upb_MethodDef_Name(const upb_MethodDef* m);
0028 UPB_API const UPB_DESC(MethodOptions) *
0029     upb_MethodDef_Options(const upb_MethodDef* m);
0030 const UPB_DESC(FeatureSet) *
0031     upb_MethodDef_ResolvedFeatures(const upb_MethodDef* m);
0032 UPB_API const upb_MessageDef* upb_MethodDef_OutputType(const upb_MethodDef* m);
0033 UPB_API bool upb_MethodDef_ServerStreaming(const upb_MethodDef* m);
0034 UPB_API const upb_ServiceDef* upb_MethodDef_Service(const upb_MethodDef* m);
0035 
0036 #ifdef __cplusplus
0037 } 
0038 #endif
0039 
0040 #include "upb/port/undef.inc"
0041 
0042 #endif