├── .gitattributes ├── .github └── workflows │ ├── build_on_linux.yml │ ├── build_on_rt.yml │ ├── build_release_artifacts.yml │ ├── ci.yml │ ├── sync_github_issue_azdo.yml │ ├── trigger_azdo_ci.yml │ ├── update_vipb_on_publish_release.yml │ ├── windows_x64_build.yml │ └── windows_x86_build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── build-it ├── LV Build │ ├── BuildGRPCPackages.vi │ ├── BuildVIPBFile.vi │ ├── GRPCVIPMBuild.lvproj │ ├── GetClientServerTemplateBuildSpecPath.vi │ ├── GetInstalledVIPMPackages.vi │ ├── GetLVServicerBuildSpecPath.vi │ ├── GetLVSupportBuildSpecPath.vi │ ├── InstallVIPMPackage.vi │ ├── StringToBuildVersion.vi │ ├── UnInstallGRPCPackages.vi │ ├── UpdateVIPBVersion.vi │ └── UpgradeVIPBVersion.vi ├── build.py ├── stage_artifacts.py ├── update_vipb_version.py └── vipb_helper.py ├── docs ├── APIreference.md ├── BasicsTutorial.md ├── Building.md ├── Certificates.md ├── FeatureToggles.md ├── QuickStart.md ├── ServerCreation.md ├── Testing.md ├── developing and building LabVIEW libraries.md └── images │ ├── HelloAgain-Client-Code.png │ ├── HelloAgain-Server-Code.png │ ├── RouteGuide-GeneratedClass.png │ ├── RouteGuide-Server-GeneratedClassMethods.png │ ├── TestTemplate_CallByReference_HelperImage.png │ ├── delete-old-wire-new-lvclass.png │ ├── drag-new-lvclass-ref-after-regen.png │ ├── gRPC-ServerClient[2]-CodeGenerator.png │ ├── generated-project.png │ ├── grpc-scripting-main.png │ ├── grpc-scripting-menu.png │ ├── routeguide-bidirectional-streaming-rpcclientcode.png │ ├── routeguide-bidirectionalstreaming-rpcservercode.png │ ├── routeguide-client-methods-generated-code.png │ ├── routeguide-client-streaming-rpcclientcode.png │ ├── routeguide-clientstreaming-rpcservercode.png │ ├── routeguide-server-streaming-rpcclientcode.png │ ├── routeguide-serverstreaming-rpcservercode.png │ ├── routeguide-start-server.png │ ├── routeguide-unary-rpcclientcode.png │ ├── routeguide-unary-rpcservercode.png │ ├── rpc-method.png │ └── server-main.png ├── examples ├── helloworld │ ├── helloworld.lvproj │ ├── helloworld_client │ │ ├── Client API │ │ │ ├── Create Client.vi │ │ │ └── Destroy Client.vi │ │ ├── RPC Messages │ │ │ ├── Register gRPC Messages.vi │ │ │ ├── helloworld_HelloReply.ctl │ │ │ └── helloworld_HelloRequest.ctl │ │ ├── RPC Service │ │ │ └── Greeter │ │ │ │ └── Unary helloworld_Greeter_SayHello.vi │ │ ├── Run greeter_client.vi │ │ └── helloworld_client.lvlib │ └── helloworld_server │ │ ├── RPC Messages │ │ ├── Get helloworld_HelloReply.vi │ │ ├── Get helloworld_HelloRequest.vi │ │ ├── Register gRPC Messages.vi │ │ ├── Set helloworld_HelloReply.vi │ │ ├── Set helloworld_HelloRequest.vi │ │ ├── helloworld_HelloReply.ctl │ │ └── helloworld_HelloRequest.ctl │ │ ├── RPC Service │ │ └── Greeter │ │ │ ├── Accessor │ │ │ ├── Read Server Internal UEs.vi │ │ │ ├── Read Server RPC Methods.vi │ │ │ ├── Write Server Internal UEs.vi │ │ │ └── Write Server RPC Methods.vi │ │ │ ├── Greeter.lvclass │ │ │ ├── RPC Methods │ │ │ ├── Bind RPC helloworld_Greeter_SayHello.vi │ │ │ ├── Get helloworld_Greeter_SayHello Request.vi │ │ │ ├── RPC Method helloworld_Greeter_SayHello.vi │ │ │ └── Set helloworld_Greeter_SayHello Response.vi │ │ │ ├── Server API │ │ │ ├── Destroy.vi │ │ │ ├── Register gRPC Methods.vi │ │ │ ├── Start Async.vi │ │ │ └── Start Sync.vi │ │ │ └── typeDefs │ │ │ ├── Server Internal Message UE.ctl │ │ │ ├── Server Internal Message.ctl │ │ │ ├── Server Internal UEs.ctl │ │ │ └── Server gRPC UEs.ctl │ │ ├── Run greeter_server.vi │ │ └── helloworld_server.lvlib ├── protos │ ├── helloworld.proto │ └── route_guide.proto ├── query_server │ ├── Clients │ │ └── python │ │ │ └── queryserver.py │ ├── Protos │ │ └── query_server.proto │ ├── Query Server.lvproj │ └── Query_server │ │ ├── Query_server.lvlib │ │ ├── RPC Messages │ │ ├── Get queryserver_InvokeRequest.vi │ │ ├── Get queryserver_InvokeResponse.vi │ │ ├── Get queryserver_QueryRequest.vi │ │ ├── Get queryserver_QueryResponse.vi │ │ ├── Get queryserver_RegistrationRequest.vi │ │ ├── Get queryserver_ServerEvent.vi │ │ ├── Register gRPC Messages.vi │ │ ├── Set queryserver_InvokeRequest.vi │ │ ├── Set queryserver_InvokeResponse.vi │ │ ├── Set queryserver_QueryRequest.vi │ │ ├── Set queryserver_QueryResponse.vi │ │ ├── Set queryserver_RegistrationRequest.vi │ │ ├── Set queryserver_ServerEvent.vi │ │ ├── queryserver_InvokeRequest.ctl │ │ ├── queryserver_InvokeResponse.ctl │ │ ├── queryserver_QueryRequest.ctl │ │ ├── queryserver_QueryResponse.ctl │ │ ├── queryserver_RegistrationRequest.ctl │ │ └── queryserver_ServerEvent.ctl │ │ ├── RPC Service │ │ └── QueryServer │ │ │ ├── Accessor │ │ │ ├── Read Server Internal UEs.vi │ │ │ ├── Read Server RPC Methods.vi │ │ │ ├── Write Server Internal UEs.vi │ │ │ └── Write Server RPC Methods.vi │ │ │ ├── QueryServer.lvclass │ │ │ ├── RPC Methods │ │ │ ├── Bind RPC queryserver_QueryServer_Invoke.vi │ │ │ ├── Bind RPC queryserver_QueryServer_Query.vi │ │ │ ├── Bind RPC queryserver_QueryServer_Register.vi │ │ │ ├── Get queryserver_QueryServer_Invoke Request.vi │ │ │ ├── Get queryserver_QueryServer_Query Request.vi │ │ │ ├── Get queryserver_QueryServer_Register Request.vi │ │ │ ├── RPC Method queryserver_QueryServer_Invoke.vi │ │ │ ├── RPC Method queryserver_QueryServer_Query.vi │ │ │ ├── RPC Method queryserver_QueryServer_Register.vi │ │ │ ├── Set queryserver_QueryServer_Invoke Response.vi │ │ │ ├── Set queryserver_QueryServer_Query Response.vi │ │ │ └── Set queryserver_QueryServer_Register Response.vi │ │ │ ├── Server API │ │ │ ├── Destroy.vi │ │ │ ├── Register gRPC Methods.vi │ │ │ ├── Start Async.vi │ │ │ └── Start Sync.vi │ │ │ └── typeDefs │ │ │ ├── Server Internal Message UE.ctl │ │ │ ├── Server Internal Message.ctl │ │ │ ├── Server Internal UEs.ctl │ │ │ └── Server gRPC UEs.ctl │ │ └── Run Service.vi └── route_guide │ ├── route_guide.lvproj │ ├── route_guide_client │ ├── Bidirectional Streaming RouteGuide Test.vi │ ├── Client API │ │ ├── Create Client.vi │ │ └── Destroy Client.vi │ ├── RPC Messages │ │ ├── Register gRPC Messages.vi │ │ ├── routeguide_Feature.ctl │ │ ├── routeguide_Point.ctl │ │ ├── routeguide_Rectangle.ctl │ │ ├── routeguide_RouteNote.ctl │ │ └── routeguide_RouteSummary.ctl │ ├── RPC Service │ │ └── RouteGuide │ │ │ ├── Begin routeguide_RouteGuide_ListFeatures.vi │ │ │ ├── Begin routeguide_RouteGuide_RecordRoute.vi │ │ │ ├── Begin routeguide_RouteGuide_RouteChat.vi │ │ │ ├── End routeguide_RouteGuide_ListFeatures.vi │ │ │ ├── End routeguide_RouteGuide_RecordRoute.vi │ │ │ ├── End routeguide_RouteGuide_RouteChat.vi │ │ │ ├── ReadStream routeguide_RouteGuide_ListFeatures.vi │ │ │ ├── ReadStream routeguide_RouteGuide_RouteChat.vi │ │ │ ├── Unary routeguide_RouteGuide_GetFeature.vi │ │ │ ├── WriteStream routeguide_RouteGuide_RecordRoute.vi │ │ │ └── WriteStream routeguide_RouteGuide_RouteChat.vi │ ├── RequestStreaming RouteGuide Test.vi │ ├── ResponseStreaming RouteGuide Test.vi │ ├── Unary RouteGuide Test.vi │ └── route_guide_client.lvlib │ └── route_guide_server │ ├── RPC Messages │ ├── Get routeguide_Feature.vi │ ├── Get routeguide_Point.vi │ ├── Get routeguide_Rectangle.vi │ ├── Get routeguide_RouteNote.vi │ ├── Get routeguide_RouteSummary.vi │ ├── Register gRPC Messages.vi │ ├── Set routeguide_Feature.vi │ ├── Set routeguide_Point.vi │ ├── Set routeguide_Rectangle.vi │ ├── Set routeguide_RouteNote.vi │ ├── Set routeguide_RouteSummary.vi │ ├── routeguide_Feature.ctl │ ├── routeguide_Point.ctl │ ├── routeguide_Rectangle.ctl │ ├── routeguide_RouteNote.ctl │ └── routeguide_RouteSummary.ctl │ ├── RPC Service │ └── RouteGuide │ │ ├── Accessor │ │ ├── Read Server Internal UEs.vi │ │ ├── Read Server RPC Methods.vi │ │ ├── Write Server Internal UEs.vi │ │ └── Write Server RPC Methods.vi │ │ ├── Feature API │ │ ├── Find Feature by Point.vi │ │ └── Get Feature List.vi │ │ ├── RPC Methods │ │ ├── Bind RPC routeguide_RouteGuide_GetFeature.vi │ │ ├── Bind RPC routeguide_RouteGuide_ListFeatures.vi │ │ ├── Bind RPC routeguide_RouteGuide_RecordRoute.vi │ │ ├── Bind RPC routeguide_RouteGuide_RouteChat.vi │ │ ├── Get routeguide_RouteGuide_GetFeature Request.vi │ │ ├── Get routeguide_RouteGuide_ListFeatures Request.vi │ │ ├── Get routeguide_RouteGuide_RecordRoute Request.vi │ │ ├── Get routeguide_RouteGuide_RouteChat Request.vi │ │ ├── RPC Method routeguide_RouteGuide_GetFeature.vi │ │ ├── RPC Method routeguide_RouteGuide_ListFeatures.vi │ │ ├── RPC Method routeguide_RouteGuide_RecordRoute.vi │ │ ├── RPC Method routeguide_RouteGuide_RouteChat.vi │ │ ├── Set routeguide_RouteGuide_GetFeature Response.vi │ │ ├── Set routeguide_RouteGuide_ListFeatures Response.vi │ │ ├── Set routeguide_RouteGuide_RecordRoute Response.vi │ │ └── Set routeguide_RouteGuide_RouteChat Response.vi │ │ ├── RouteGuide.lvclass │ │ ├── Server API │ │ ├── Destroy.vi │ │ ├── Register gRPC Methods.vi │ │ ├── Start Async.vi │ │ └── Start Sync.vi │ │ └── typeDefs │ │ ├── Server Internal Message UE.ctl │ │ ├── Server Internal Message.ctl │ │ ├── Server Internal UEs.ctl │ │ └── Server gRPC UEs.ctl │ ├── Run Service.vi │ └── route_guide_server.lvlib ├── labview source ├── Client Server Support New │ ├── Client Template │ │ ├── Client API │ │ │ ├── Create Client.vi │ │ │ └── Destroy Client.vi │ │ ├── Client Template.lvlib │ │ ├── RPC Messages │ │ │ ├── Get Value for package_template_enum.vi │ │ │ ├── Get package_template_enum for Value.vi │ │ │ └── Register gRPC Messages.vi │ │ └── RPC Service │ │ │ ├── Begin BidirectionalStreamTemplate.vi │ │ │ ├── Begin ClientStreamTemplate.vi │ │ │ ├── Begin ServerStreamTemplate.vi │ │ │ ├── End BidirectionalStreamTemplate.vi │ │ │ ├── End ClientStreamTemplate.vi │ │ │ ├── End ServerStreamTemplate.vi │ │ │ ├── ReadStream ServerStreamTemplate.vi │ │ │ ├── Unary UnaryTemplate.vi │ │ │ └── WriteStream ClientStreamTemplate.vi │ ├── ClientServer Support New.lvproj │ ├── Oneof Template │ │ ├── FlatToRich.vim │ │ ├── GetActiveFieldIndex.vi │ │ ├── GetActiveFieldName.vi │ │ ├── GetTemplate.vi │ │ ├── HasTemplate.vi │ │ ├── OneOfTemplate.lvclass │ │ ├── RichToFlat.vim │ │ └── SetTemplate.vi │ ├── Server Template │ │ ├── Cleanup Panel.vi │ │ ├── Create Services.vi │ │ ├── Generated Descriptors │ │ │ └── Generated Descriptors.vi │ │ ├── Get Service Class Instances.vi │ │ ├── Initialize Panel.vi │ │ ├── Monitor for Stop.vi │ │ ├── RPC Messages │ │ │ ├── Get Value for package_template_enum.vi │ │ │ ├── Get package_template_enum for Value.vi │ │ │ ├── Get package_template_enum.vi │ │ │ ├── Get package_templatemessage.vi │ │ │ ├── MessageConverterProxy.vim │ │ │ ├── Register Descriptors.vi │ │ │ ├── Register gRPC Messages.vi │ │ │ ├── Set package_template_enum.vi │ │ │ ├── Set package_templatemessage.vi │ │ │ └── package_templatemessage.ctl │ │ ├── RPC Service │ │ │ └── ServiceName │ │ │ │ ├── Accessor │ │ │ │ ├── Read Server Internal UEs.vi │ │ │ │ ├── Read Server RPC Methods.vi │ │ │ │ ├── Write Server Internal UEs.vi │ │ │ │ └── Write Server RPC Methods.vi │ │ │ │ ├── RPC Methods │ │ │ │ ├── Bind RPC package_service_method.vi │ │ │ │ ├── Get package_service_method Request.vi │ │ │ │ ├── RPC Method package_service_method.vi │ │ │ │ └── Set package_service_method Response.vi │ │ │ │ ├── Server API │ │ │ │ ├── Destroy.vi │ │ │ │ ├── Register gRPC Methods.vi │ │ │ │ ├── Start Async.vi │ │ │ │ └── Start Sync.vi │ │ │ │ ├── ServiceName Template.lvclass │ │ │ │ └── typeDefs │ │ │ │ ├── Server Internal Message UE.ctl │ │ │ │ ├── Server Internal Message.ctl │ │ │ │ ├── Server Internal UEs.ctl │ │ │ │ └── Server gRPC UEs.ctl │ │ ├── Run Server.vi │ │ └── Service Template.lvlib │ ├── build spec │ │ └── gRPC Server and Client Template [2].vipb │ └── gRPC Scripting Tools │ │ ├── Animation API │ │ ├── Animation.vi │ │ ├── Display Loader.vi │ │ ├── Get Subpanel Ref.vi │ │ ├── Gifs │ │ │ ├── Loading Gif.gif │ │ │ └── loader.gif │ │ └── Hide Loader.vi │ │ ├── Class API │ │ ├── Clear Private Data Cluster.vi │ │ ├── Copy Class Item.vi │ │ ├── Create LVClass Copy.vi │ │ ├── Delete Item from LVClass.vi │ │ ├── Delete LVClass Item.vi │ │ ├── Find Class in ProjectItem.vi │ │ ├── Find Item in LVClass.vi │ │ ├── Get ControlRef from ClassItem.vi │ │ ├── Get LVClass Item Path.vi │ │ ├── Get Static Methods in LVClass.vi │ │ ├── Get VIRef from ClassItem.vi │ │ ├── Open LVClass.vi │ │ ├── Ref to LVClass.vi │ │ └── Save LVClass.vi │ │ ├── Error Handling │ │ ├── Error 5000.vi │ │ ├── Error 5001.vi │ │ ├── Error 5002.vi │ │ ├── Error 5003.vi │ │ ├── Error 5004.vi │ │ ├── Error 5005.vi │ │ ├── Error 5006.vi │ │ ├── Error 5007.vi │ │ ├── Error 5008.vi │ │ ├── Error 5009.vi │ │ ├── Error 5010.vi │ │ ├── Error 5011.vi │ │ ├── Error 5012.vi │ │ ├── Error 5013.vi │ │ ├── Error 5014.vi │ │ ├── Error 5015.vi │ │ ├── Error 5016.vi │ │ ├── Error 5017.vi │ │ ├── Error 5018.vi │ │ ├── Error 5019.vi │ │ ├── Error 5020.vi │ │ ├── Error 5021.vi │ │ ├── Error 5022.vi │ │ ├── Error 5023.vi │ │ ├── Error 5024.vi │ │ ├── Error 5025.vi │ │ ├── Error 5026.vi │ │ ├── Error 5027.vi │ │ ├── Error 5028.vi │ │ ├── Error 5029.vi │ │ ├── Error 5030.vi │ │ ├── Error 5031.vi │ │ ├── Error 5032.vi │ │ └── Errors.txt │ │ ├── Library API │ │ ├── Add File to Lib.vi │ │ ├── Add LVClass to Lib.vi │ │ ├── Copy Library Item.vi │ │ ├── Delete Item from Library.vi │ │ ├── Delete Library Item.vi │ │ ├── Find Item in Library.vi │ │ ├── Find Library in ProjectItem.vi │ │ ├── Get ControlRef from LibraryItem.vi │ │ ├── Get Library Item Path.vi │ │ ├── Get VIRef from Library.vi │ │ ├── Get grpc-library ref.vi │ │ ├── Open Library.vi │ │ ├── Ref To Library.vi │ │ └── Save Library.vi │ │ ├── Logging API │ │ ├── Log CodeGen Run.vi │ │ └── Log gRPC Data.vi │ │ ├── Main.vi │ │ ├── Oneof API │ │ ├── Accessor Helpers │ │ │ ├── GenOneOf_Get_Accessor.vi │ │ │ ├── GenOneOf_Has_Accessor.vi │ │ │ ├── GenOneOf_Set_Accessor.vi │ │ │ └── GetOneOfAccessorList.vi │ │ ├── Add Oneof Index To Metadata.vi │ │ ├── Add Oneof Indices To Metadata.vi │ │ ├── Copy PDC To VI.vi │ │ ├── Create LVClass for Oneof.vi │ │ ├── Create OneOf Accessors.vi │ │ ├── Create OneOf Field Accessors.vi │ │ ├── Create Oneof Case Structure.vi │ │ ├── Create Oneof Message Converter Skeletons.vi │ │ ├── Create Oneof Message Converters (Flat to Rich).vi │ │ ├── Create Oneof Message Converters (Rich to Flat).vi │ │ ├── Create Oneof Protobuf To Field Name.vi │ │ ├── Create Selected Index Numeric In Cluster.vi │ │ ├── Delete Oneof Template Files.vi │ │ ├── Drop Oneof Constant into Case Structure Default.vi │ │ ├── Drop Protobuf To Field Converter SubVI.vi │ │ ├── Find Oneof Field Getter.vi │ │ ├── Get Oneof Template Directory.vi │ │ ├── Get Rich to Flat Info.vi │ │ ├── Get Selected Index Terminal from Unbundler (by oneof name).vi │ │ ├── Get Typedef Name.vi │ │ ├── OneOf Constants │ │ │ ├── Get Constant.vi │ │ │ └── OneOfConstantsEnum.ctl │ │ ├── Script Field Conversion.vi │ │ ├── Script Flat to Rich Message Conversion.vi │ │ ├── Script Flat to Rich Oneof Conversion.vi │ │ ├── Script Rich to Flat Message Conversion.vi │ │ ├── Script Rich to Flat Oneof Conversion.vi │ │ ├── ScriptOneofClassConverter.vi │ │ ├── Set LVClass Const Label.vi │ │ ├── Set LVClass Control Label.vi │ │ ├── Update Message Converter VIs in Unary Method Call.vi │ │ ├── Update OneOf Field Accessor.vi │ │ └── Wire Selected_Index To Case Selector.vi │ │ ├── Open gRPC Server-Client [2] - Code Generator.vi │ │ ├── Project API │ │ ├── Add File to Project TargetItem.vi │ │ ├── Add File to ProjectItem.vi │ │ ├── Close Project.vi │ │ ├── Create Folder at Location.vi │ │ ├── Create Lib in Project.vi │ │ ├── Create Virtual FolderItem.vi │ │ ├── Delete In Folder.vi │ │ ├── Delete LVClass from ProjectItem.vi │ │ ├── Find Item in ProjectItem.vi │ │ ├── Get Application Refs.vi │ │ ├── Get ClassItems from ProjectItem.vi │ │ ├── Get LibItems from ProjectItem.vi │ │ ├── Get MyComputer.vi │ │ ├── Get Project Root.vi │ │ ├── Get ProjectItem Descendants (with Pattern).vi │ │ ├── Get ProjectItem Descendants (with Type).vi │ │ ├── Get ProjectItem Descendants.vi │ │ ├── Get Target ref.vi │ │ ├── Open Project.vi │ │ ├── Save Project.vi │ │ └── Set Relative Path.vi │ │ ├── Proto Parser API │ │ ├── GetProtoParseError.vi │ │ ├── LabVIEW API │ │ │ ├── Add Proto Search Path.vi │ │ │ ├── Check Method Client Streaming.vi │ │ │ ├── Check Method Server Streaming.vi │ │ │ ├── Create Enum Metadata.vi │ │ │ ├── Create Message Metadata.vi │ │ │ ├── Create Method Metadata.vi │ │ │ ├── Create Methods.vi │ │ │ ├── Create Proto Parser.vi │ │ │ ├── Create Types.vi │ │ │ ├── Get Enum Field Info.vi │ │ │ ├── Get Enum Name.vi │ │ │ ├── Get Enum TypeUrl.vi │ │ │ ├── Get Message Field Info.vi │ │ │ ├── Get Message Fields.vi │ │ │ ├── Get Message HasOneof.vi │ │ │ ├── Get Message Name.vi │ │ │ ├── Get Message Parameters.vi │ │ │ ├── Get Message TypeUrl.vi │ │ │ ├── Get Method Input Message.vi │ │ │ ├── Get Method Output Message.vi │ │ │ ├── Get ProtoFile Enums.vi │ │ │ ├── Get ProtoFile Messages.vi │ │ │ ├── Get ProtoParser DLL Directory.vi │ │ │ ├── Get gRPC Method FullName.vi │ │ │ ├── Get gRPC Method Name.vi │ │ │ ├── Get gRPC Package.vi │ │ │ ├── Get gRPC Service Methods.vi │ │ │ ├── Get gRPC Service Name.vi │ │ │ ├── Get gRPC Services.vi │ │ │ ├── Group Services.vi │ │ │ ├── Load ProtoFile.vi │ │ │ ├── Serialize Proto.vi │ │ │ └── Translate gRPC Method FullName.vi │ │ └── Proto Parser.vi │ │ ├── Resources │ │ ├── Create Cluster.vi │ │ └── Script.vi │ │ ├── Top Level API │ │ ├── Add Control to Server ClusterDef.vi │ │ ├── Add Server Library to Project.vi │ │ ├── Basic Generate LV Icon Text Layer.vi │ │ ├── Clear Methods Registration.vi │ │ ├── Copy Template Files.vi │ │ ├── Create Client from Template.vi │ │ ├── Create Enum Accessor.vi │ │ ├── Create Enum Data Clusters (simple).vi │ │ ├── Create Enum Data Clusters.vi │ │ ├── Create Enum Getter.vi │ │ ├── Create Enum Mapper.vi │ │ ├── Create Enum Setter.vi │ │ ├── Create Enums For Registration.vi │ │ ├── Create LV RPC Method Name.vi │ │ ├── Create Mapper VIs for Enum.vi │ │ ├── Create Message Accessor.vi │ │ ├── Create Message Accessors.vi │ │ ├── Create Message Data Cluster.vi │ │ ├── Create Message Data Clusters (complex).vi │ │ ├── Create Message Data Clusters (simple).vi │ │ ├── Create Message Data Clusters.vi │ │ ├── Create Message Data Element.vi │ │ ├── Create Message Getter (from Accessor).vi │ │ ├── Create Message Getter.vi │ │ ├── Create Message Setter (from Accessor).vi │ │ ├── Create Message Setter.vi │ │ ├── Create Message Types and Converters.vi │ │ ├── Create Message VI (from Accessor).vi │ │ ├── Create Message VI (from Template).vi │ │ ├── Create Messages For Registration.vi │ │ ├── Create RPC Client Method.vi │ │ ├── Create RPC Method.vi │ │ ├── Create Server Class from Template.vi │ │ ├── Create Server Library from Template.vi │ │ ├── Create Type Data Clusters (simple).vi │ │ ├── Create Type Data Clusters.vi │ │ ├── Delete Message Template Files.vi │ │ ├── Delete Method Template Files.vi │ │ ├── Delete RPC Client Method Template Files.vi │ │ ├── Generate Client RPC Messages.vi │ │ ├── Generate Client RPC Methods.vi │ │ ├── Generate Descriptor VI.vi │ │ ├── Generate Server RPC Messages.vi │ │ ├── Generate Server RPC Methods.vi │ │ ├── Get LV Object Controls for Proto Field Type.vi │ │ ├── Get LV Object Indicators for Proto Field Type.vi │ │ ├── Get Message Placement Cluster.vi │ │ ├── Get Or Create Typedef.vi │ │ ├── Get RPC Method Name.vi │ │ ├── Get RPC Methods Binds.vi │ │ ├── Get RPC Methods Paths.vi │ │ ├── Get RPC Service Name from Method Namespace.vi │ │ ├── Get RPC Type.vi │ │ ├── Is Element Conversion Required.vi │ │ ├── Is Element Well Known Type.vi │ │ ├── Populate gRPC Events.vi │ │ ├── Script RPC Client VI.vi │ │ ├── Set Enum Control Strings.vi │ │ ├── Set Message Field Representation.vi │ │ ├── Set VI Icon Text Layer.vi │ │ ├── StringSplitIntoThree.vi │ │ ├── Update Bind Method Constants.vi │ │ ├── Update Bind Method Controls.vi │ │ ├── Update Bind Methods.vi │ │ ├── Update Bind RPC Template.vi │ │ ├── Update Control for Element.vi │ │ ├── Update Enum Getter.vi │ │ ├── Update Enum Mapper.vi │ │ ├── Update Enum Setter.vi │ │ ├── Update Message Getter.vi │ │ ├── Update Message Setter.vi │ │ ├── Update Messages Access Scope.vi │ │ ├── Update Messages MetaData.vi │ │ ├── Update Method Accessor.vi │ │ ├── Update Method Accessors.vi │ │ ├── Update Method Event Unbundlers.vi │ │ ├── Update Method Getter.vi │ │ ├── Update Method Name and Owning Folder.vi │ │ ├── Update Method Setter.vi │ │ ├── Update Methods Event Structures.vi │ │ ├── Update Methods Event Unbundlers.vi │ │ ├── Update Methods Registration.vi │ │ ├── Update RPC Client Method Constants.vi │ │ ├── Update RPC Client Method Controls.vi │ │ ├── Update RPC Method Template.vi │ │ ├── Update RPC Template Accessor.vi │ │ ├── Update RPC Template Accessors.vi │ │ ├── Update Server Start Async.vi │ │ ├── Update Service Class Instances.vi │ │ ├── Update SyncMethod Event Structure.vi │ │ ├── Update Template Files.vi │ │ ├── UpdateLibraryFromTemplate.vi │ │ └── UpdateVIIcon.vi │ │ ├── TypeDefs │ │ ├── Enum Metadata (Scripting).ctl │ │ ├── Message Element Metadata (Scripting).ctl │ │ ├── Message Element Type.ctl │ │ ├── Message Metadata (Scripting).ctl │ │ ├── Method Accessor Type.ctl │ │ ├── Project Settings.ctl │ │ ├── RPC Method Parameters.ctl │ │ └── RPC Method Types.ctl │ │ ├── VI API │ │ ├── Block Diagram API │ │ │ ├── BD CleanUp.vi │ │ │ ├── Bundler │ │ │ │ ├── Create Bundler With Name.vi │ │ │ │ ├── Get Bundler Input Terminal By Name.vi │ │ │ │ ├── Get Bundler.vi │ │ │ │ ├── Get NamedBundler Input.vi │ │ │ │ ├── Get NamedBundler.vi │ │ │ │ ├── Get NamedUnbundler.vi │ │ │ │ ├── Get Unbundler Input Terminal.vi │ │ │ │ ├── Get Unbundler Output Terminal By Name.vi │ │ │ │ ├── Get Unbundler Output Terminal Names.vi │ │ │ │ ├── Get Unbundler.vi │ │ │ │ ├── Set Bundler Input Count.vi │ │ │ │ ├── Set NamedBundler Input Count.vi │ │ │ │ └── Wire To Unbundler Input Terminal.vi │ │ │ ├── Case Structure │ │ │ │ ├── Add Case Structure Frame (by Name).vi │ │ │ │ ├── Connect Case Selector Terminal.vi │ │ │ │ ├── Create Case Structure Frames.vi │ │ │ │ ├── Create Case Structure.vi │ │ │ │ ├── Delete All Case Structure Frames But Default.vi │ │ │ │ ├── Delete Empty Case Structure Frames.vi │ │ │ │ ├── Duplicate Case Structure Frames.vi │ │ │ │ ├── Find Frame Sink Terminal (Assuming only one sink).vi │ │ │ │ ├── Find Frame Sink Terminal (by Name).vi │ │ │ │ ├── Find Frame Source Terminal (by Name).vi │ │ │ │ ├── Get Case Struct Tunnels.vi │ │ │ │ ├── Get Case Structure (by Name).vi │ │ │ │ ├── Get Case Structure Frame (by Name).vi │ │ │ │ ├── Get Case Structure Frame Index (by Name).vi │ │ │ │ ├── Set Default Case By Frame Name.vi │ │ │ │ └── Set Default Case.vi │ │ │ ├── Constants │ │ │ │ ├── Connect Const to Source.vi │ │ │ │ ├── Enum │ │ │ │ │ └── Insert BD Enum.vi │ │ │ │ └── Get Constant (by Name).vi │ │ │ ├── Delete Diagram SubVIs.vi │ │ │ ├── Diagram Disable Structure │ │ │ │ └── Create Diagram Disable Structure.vi │ │ │ ├── Event Structure │ │ │ │ ├── Add Event Structure Frame.vi │ │ │ │ ├── Get Event Structure (by Name).vi │ │ │ │ └── Set Frame User Events.vi │ │ │ ├── Get BD Reference.vi │ │ │ ├── SubVI │ │ │ │ ├── Create SubVI.vi │ │ │ │ ├── Get SubVI Reference (by Name).vi │ │ │ │ ├── Get SubVI References (by Pattern).vi │ │ │ │ ├── Get SubVI References.vi │ │ │ │ ├── Get SubVI Terminal (by Name).vi │ │ │ │ └── Replace SubVI (by Name).vi │ │ │ ├── Tunnels │ │ │ │ ├── Connect Terminals.vi │ │ │ │ └── Get Inside Terminals.vi │ │ │ └── Wire Two Terminals.vi │ │ ├── Front Panel API │ │ │ ├── Add Control to Cluster (from src ref).vi │ │ │ ├── Add Empty Cluster to Cluster.vi │ │ │ ├── Add Enum to Message.vi │ │ │ ├── Add LVClass to Cluster.vi │ │ │ ├── Add TypeDef to Cluster.vi │ │ │ ├── Create Cluster Control.vi │ │ │ ├── Create Enum Ctrl.vi │ │ │ ├── Create String Control.vi │ │ │ ├── Create Type Definition.vi │ │ │ ├── Delete Cluster Controls.vi │ │ │ ├── Delete Control from Cluster.vi │ │ │ ├── Delete Front Panel Controls.vi │ │ │ ├── Find Control Index in Cluster.vi │ │ │ ├── Find Control Ref in Cluster.vi │ │ │ ├── Get Control (by Name).vi │ │ │ ├── Get ControlRef from ctrlVI.vi │ │ │ ├── Get String Control Terminal.vi │ │ │ ├── Get VI FP Reference.vi │ │ │ └── Set Cluster AutoResize to Vertical.vi │ │ └── General VI API │ │ │ ├── Cleanup VI BD.vi │ │ │ ├── Cleanup VI FP.vi │ │ │ ├── Coordinates │ │ │ ├── Generate Bounds Coordinates.vi │ │ │ └── Generate Location Coordinates.vi │ │ │ ├── Save VI at Path.vi │ │ │ ├── Set Source Only.vi │ │ │ ├── SubVI Template.vit │ │ │ └── Validate Path Length.vi │ │ └── gRPC Template Creation Utility.lvlib ├── gRPC lv Servicer │ ├── ServiceBase │ │ ├── Accessors │ │ │ ├── Read Server Stop.vi │ │ │ └── Read gRPCid.vi │ │ ├── Server API │ │ │ ├── Destroy.vi │ │ │ ├── Instantiate.vi │ │ │ ├── Register gRPC Methods.vi │ │ │ ├── Start Async.vi │ │ │ ├── Start Sync.vi │ │ │ └── Start.vi │ │ └── ServiceBase.lvclass │ ├── Servicer │ │ ├── Accessors │ │ │ ├── Server Address │ │ │ │ ├── Get Server Address.vi │ │ │ │ └── Set Server Address.vi │ │ │ ├── Server Certificate File │ │ │ │ ├── Get Server Certificate File.vi │ │ │ │ └── Set Server Certificate File.vi │ │ │ ├── Server Key File │ │ │ │ ├── Get Server Key File.vi │ │ │ │ └── Set Server Key File.vi │ │ │ ├── Server State │ │ │ │ ├── Get Server State.vi │ │ │ │ ├── Set Server State.vi │ │ │ │ ├── State Ref │ │ │ │ │ ├── Get Server State Ref.vi │ │ │ │ │ └── Set Server State Ref.vi │ │ │ │ └── State UE │ │ │ │ │ ├── Get Server State UE.vi │ │ │ │ │ └── Set Server State UE.vi │ │ │ └── gRPC ID │ │ │ │ ├── Get gRPC ID.vi │ │ │ │ └── Set gRPC ID.vi │ │ ├── Run Servicer.vi │ │ ├── Server API │ │ │ ├── Create Server.vi │ │ │ ├── Initialize Server State.vi │ │ │ ├── Start Server.vi │ │ │ └── Stop Server.vi │ │ ├── Servicer.lvclass │ │ └── typeDefs │ │ │ ├── Server Internal Message.ctl │ │ │ ├── Server State Data.ctl │ │ │ ├── Server State.ctl │ │ │ └── Server gRPC UEs.ctl │ ├── build spec │ │ └── LabVIEW gRPC Servicer.vipb │ ├── gRPC lv Servicer.lvproj │ └── gRPC-servicer.lvlib └── gRPC lv Support │ ├── Client API │ ├── Client Begin Bidirectional Streaming Call.vi │ ├── Client Begin Client Streaming Call.vi │ ├── Client Begin Server Streaming Call.vim │ ├── Client Cancel Call Context.vi │ ├── Client Cancel Call.vi │ ├── Client Complete Client Streaming Call.vim │ ├── Client Complete Streaming Call.vi │ ├── Client Read From Stream.vim │ ├── Client Unary Call.vim │ ├── Client Write To Stream.vim │ ├── Client Writes Complete.vi │ ├── Close Client Context.vi │ ├── Close Client.vi │ ├── Create Client Context.vi │ └── Create Client.vi │ ├── Server API │ ├── Cluster to gRPC message │ │ ├── Apply Package Name to Enum Metadata.vi │ │ ├── Apply Package Name.vi │ │ ├── Cluster to Element Details.vi │ │ ├── Cluster to gRPC LabVIEW Message.vi │ │ ├── Element to Enum Metadata.vi │ │ ├── Element to Message Element Metadata.vi │ │ ├── Get Embedded Message Name.vi │ │ ├── LabVIEW Data Value to Message Element DataType.vi │ │ └── Register Cluster.vi │ ├── CompleteMetadataRegistration.vi │ ├── CreateSerializationSession.vi │ ├── FreeSerializationSession.vi │ ├── FreeUnpackedFields.vi │ ├── GetUnpackedField.vim │ ├── Message Requests │ │ ├── AnyBuilderAddValue.vim │ │ ├── AnyBuilderBegin.vi │ │ ├── AnyBuilderBeginNestedMessage.vi │ │ ├── AnyBuilderBeginRepeatedNestedMessage.vi │ │ ├── AnyBuilderBeginRepeatedNestedMessageElement.vi │ │ ├── AnyBuilderBuild.vi │ │ ├── AnyBuilderBuildToBuffer.vi │ │ ├── Complete Call.vi │ │ ├── Is Call Cancelled.vi │ │ ├── IsAnyOfType.vi │ │ ├── PackToAny.vim │ │ ├── Read Call Request.vim │ │ ├── TryUnpackFromAny.vim │ │ ├── UnpackFromAny.vim │ │ └── Write Call Response.vim │ ├── PackToBuffer.vim │ ├── Server │ │ ├── Create And Register Generic Method Server Event.vi │ │ ├── Create And Register Server Event.vim │ │ ├── Create Server.vi │ │ ├── Get Server DLL Path.vi │ │ ├── Register Enum Metadata.vi │ │ ├── Register Message Metadata.vi │ │ ├── Register Reflection Descriptors.vi │ │ ├── Start Server.vi │ │ └── Stop Server.vi │ ├── Set Call Status.vi │ ├── Translate Protobuf Error.vi │ ├── UnpackFieldsFromAny.vi │ ├── UnpackFieldsFromBuffer.vi │ ├── UnpackFromBuffer.vim │ └── typeDefs │ │ ├── Enum Metadata.ctl │ │ ├── Generic Method Event Data.ctl │ │ ├── Message Element Metadata.ctl │ │ ├── Message Element Type.ctl │ │ ├── Message Metadata.ctl │ │ ├── gRPC Status Code.ctl │ │ ├── gRPCId Cluster UE.ctl │ │ └── gRPCId Cluster.ctl │ ├── Shared │ ├── Any.ctl │ ├── Get LV Enum Value from Proto Value.vi │ ├── Get Proto Enum Value from LV Value.vi │ ├── Is Feature Enabled.vi │ ├── Is Message Well Known Type.vi │ ├── Set LVRT Module Path.vi │ ├── To Message Name.vi │ ├── To Well Known Type.vi │ ├── TranslateGrpcError.vi │ ├── Wait On Occurrence.vi │ ├── Well Known Types.ctl │ └── grpcId.ctl │ ├── build spec │ └── LabVIEW gRPC Library.vipb │ ├── grpc-labview.lvproj │ └── grpc-lvsupport.lvlib ├── nilrt-x86_64.cmake ├── src ├── any_support.cc ├── cluster_copier.cc ├── cluster_copier.h ├── enum_metadata.h ├── event_data.cc ├── event_data.h ├── example_client.cc ├── exceptions.h ├── feature_toggles.cc ├── feature_toggles.h ├── grpc_client.cc ├── grpc_client.h ├── grpc_interop.cc ├── grpc_load.cc ├── grpc_server.cc ├── grpc_server.h ├── lv_interop.cc ├── lv_interop.h ├── lv_message.cc ├── lv_message.h ├── lv_message_efficient.cc ├── lv_message_efficient.h ├── lv_message_value.cc ├── lv_proto_server_reflection_plugin.cc ├── lv_proto_server_reflection_plugin.h ├── lv_proto_server_reflection_service.cc ├── lv_proto_server_reflection_service.h ├── message_element_metadata_owner.cc ├── message_metadata.cc ├── message_metadata.h ├── message_value.h ├── metadata_owner.h ├── path_support.cc ├── path_support.h ├── pointer_manager.h ├── proto_parser.cc ├── semaphore.h ├── serialization_session.h ├── test_client.cc ├── test_server.cc ├── unpacked_fields.cc ├── well_known_messages.cc ├── well_known_messages.h └── well_known_types.h └── tests ├── AutoTests ├── ClientCallAbortTests │ ├── Generated_client │ │ ├── Client API │ │ │ ├── Create Client.vi │ │ │ └── Destroy Client.vi │ │ ├── Generated_client.lvlib │ │ ├── RPC Messages │ │ │ ├── Register gRPC Messages.vi │ │ │ ├── helloworld_ByeReply.ctl │ │ │ ├── helloworld_ByeRequest.ctl │ │ │ ├── helloworld_HelloReply.ctl │ │ │ └── helloworld_HelloRequest.ctl │ │ ├── RPC Service │ │ │ └── Greeter │ │ │ │ ├── Greeter SayBye.vi │ │ │ │ └── Greeter SayHello.vi │ │ └── gRPC Client Test.vi │ ├── Generated_server │ │ ├── Generated_server.lvlib │ │ ├── RPC Messages │ │ │ ├── Get helloworld_ByeReply.vi │ │ │ ├── Get helloworld_ByeRequest.vi │ │ │ ├── Get helloworld_HelloReply.vi │ │ │ ├── Get helloworld_HelloRequest.vi │ │ │ ├── Register gRPC Messages.vi │ │ │ ├── Set helloworld_ByeReply.vi │ │ │ ├── Set helloworld_ByeRequest.vi │ │ │ ├── Set helloworld_HelloReply.vi │ │ │ ├── Set helloworld_HelloRequest.vi │ │ │ ├── helloworld_ByeReply.ctl │ │ │ ├── helloworld_ByeRequest.ctl │ │ │ ├── helloworld_HelloReply.ctl │ │ │ └── helloworld_HelloRequest.ctl │ │ ├── RPC Service │ │ │ └── Greeter │ │ │ │ ├── Accessor │ │ │ │ ├── Read Server Internal UEs.vi │ │ │ │ ├── Read Server RPC Methods.vi │ │ │ │ ├── Write Server Internal UEs.vi │ │ │ │ └── Write Server RPC Methods.vi │ │ │ │ ├── Greeter.lvclass │ │ │ │ ├── RPC Methods │ │ │ │ ├── Bind RPC Greeter SayBye.vi │ │ │ │ ├── Bind RPC Greeter SayHello.vi │ │ │ │ ├── Get Greeter SayBye Request.vi │ │ │ │ ├── Get Greeter SayHello Request.vi │ │ │ │ ├── RPC Method Greeter SayBye.vi │ │ │ │ ├── RPC Method Greeter SayHello.vi │ │ │ │ ├── Set Greeter SayBye Response.vi │ │ │ │ └── Set Greeter SayHello Response.vi │ │ │ │ ├── Server API │ │ │ │ ├── Destroy.vi │ │ │ │ ├── Register gRPC Methods.vi │ │ │ │ ├── Start Async.vi │ │ │ │ └── Start Sync.vi │ │ │ │ └── typeDefs │ │ │ │ ├── Server Internal Message UE.ctl │ │ │ │ ├── Server Internal Message.ctl │ │ │ │ ├── Server Internal UEs.ctl │ │ │ │ └── Server gRPC UEs.ctl │ │ └── Run Service.vi │ ├── UnaryClientAbortTest.vi │ ├── helloworld.proto │ └── occur_test.lvproj ├── ClientCancellationTests │ ├── BiDiStreamingCancellationTest.vi │ ├── ClientStreamingCancellationTest.vi │ ├── ServerStreamingCancellationTest.vi │ ├── UnaryClientCancellationTest.vi │ ├── route_guide.lvproj │ ├── route_guide_client │ │ ├── Bidirectional Streaming RouteGuide Test.vi │ │ ├── Client API │ │ │ ├── Create Client.vi │ │ │ └── Destroy Client.vi │ │ ├── RPC Messages │ │ │ ├── Register gRPC Messages.vi │ │ │ ├── routeguide_Feature.ctl │ │ │ ├── routeguide_Point.ctl │ │ │ ├── routeguide_Rectangle.ctl │ │ │ ├── routeguide_RouteNote.ctl │ │ │ └── routeguide_RouteSummary.ctl │ │ ├── RPC Service │ │ │ └── RouteGuide │ │ │ │ ├── Begin routeguide_RouteGuide_ListFeatures.vi │ │ │ │ ├── Begin routeguide_RouteGuide_RecordRoute.vi │ │ │ │ ├── Begin routeguide_RouteGuide_RouteChat.vi │ │ │ │ ├── End routeguide_RouteGuide_ListFeatures.vi │ │ │ │ ├── End routeguide_RouteGuide_RecordRoute.vi │ │ │ │ ├── End routeguide_RouteGuide_RouteChat.vi │ │ │ │ ├── ReadStream routeguide_RouteGuide_ListFeatures.vi │ │ │ │ ├── ReadStream routeguide_RouteGuide_RouteChat.vi │ │ │ │ ├── Unary routeguide_RouteGuide_GetFeature.vi │ │ │ │ ├── WriteStream routeguide_RouteGuide_RecordRoute.vi │ │ │ │ └── WriteStream routeguide_RouteGuide_RouteChat.vi │ │ ├── RequestStreaming RouteGuide Test.vi │ │ ├── ResponseStreaming RouteGuide Test.vi │ │ ├── Unary RouteGuide Test.vi │ │ └── route_guide_client.lvlib │ └── route_guide_server │ │ ├── Is Call Cancelled Global.vi │ │ ├── RPC Messages │ │ ├── Get routeguide_Feature.vi │ │ ├── Get routeguide_Point.vi │ │ ├── Get routeguide_Rectangle.vi │ │ ├── Get routeguide_RouteNote.vi │ │ ├── Get routeguide_RouteSummary.vi │ │ ├── Register gRPC Messages.vi │ │ ├── Set routeguide_Feature.vi │ │ ├── Set routeguide_Point.vi │ │ ├── Set routeguide_Rectangle.vi │ │ ├── Set routeguide_RouteNote.vi │ │ ├── Set routeguide_RouteSummary.vi │ │ ├── routeguide_Feature.ctl │ │ ├── routeguide_Point.ctl │ │ ├── routeguide_Rectangle.ctl │ │ ├── routeguide_RouteNote.ctl │ │ └── routeguide_RouteSummary.ctl │ │ ├── RPC Service │ │ └── RouteGuide │ │ │ ├── Accessor │ │ │ ├── Read Server Internal UEs.vi │ │ │ ├── Read Server RPC Methods.vi │ │ │ ├── Write Server Internal UEs.vi │ │ │ └── Write Server RPC Methods.vi │ │ │ ├── Feature API │ │ │ ├── Find Feature by Point.vi │ │ │ └── Get Feature List.vi │ │ │ ├── RPC Methods │ │ │ ├── Bind RPC routeguide_RouteGuide_GetFeature.vi │ │ │ ├── Bind RPC routeguide_RouteGuide_ListFeatures.vi │ │ │ ├── Bind RPC routeguide_RouteGuide_RecordRoute.vi │ │ │ ├── Bind RPC routeguide_RouteGuide_RouteChat.vi │ │ │ ├── Get routeguide_RouteGuide_GetFeature Request.vi │ │ │ ├── Get routeguide_RouteGuide_ListFeatures Request.vi │ │ │ ├── Get routeguide_RouteGuide_RecordRoute Request.vi │ │ │ ├── Get routeguide_RouteGuide_RouteChat Request.vi │ │ │ ├── RPC Method routeguide_RouteGuide_GetFeature.vi │ │ │ ├── RPC Method routeguide_RouteGuide_ListFeatures.vi │ │ │ ├── RPC Method routeguide_RouteGuide_RecordRoute.vi │ │ │ ├── RPC Method routeguide_RouteGuide_RouteChat.vi │ │ │ ├── Set routeguide_RouteGuide_GetFeature Response.vi │ │ │ ├── Set routeguide_RouteGuide_ListFeatures Response.vi │ │ │ ├── Set routeguide_RouteGuide_RecordRoute Response.vi │ │ │ └── Set routeguide_RouteGuide_RouteChat Response.vi │ │ │ ├── RouteGuide.lvclass │ │ │ ├── Server API │ │ │ ├── Destroy.vi │ │ │ ├── Register gRPC Methods.vi │ │ │ ├── Start Async.vi │ │ │ └── Start Sync.vi │ │ │ └── typeDefs │ │ │ ├── Server Internal Message UE.ctl │ │ │ ├── Server Internal Message.ctl │ │ │ ├── Server Internal UEs.ctl │ │ │ └── Server gRPC UEs.ctl │ │ ├── Run Service.vi │ │ ├── Server Error Global.vi │ │ └── route_guide_server.lvlib ├── Service_NotSupported_InServer │ ├── Crash Test.vi │ ├── CrastTest.PNG │ ├── TestDescription.md │ ├── gRPC - Example_1 │ │ └── Example_1_server │ │ │ ├── Example_1_server.lvlib │ │ │ ├── RPC Messages │ │ │ ├── Get adas_GetNumber.vi │ │ │ ├── Get adas_SetNumber.vi │ │ │ ├── Get adas_empty.vi │ │ │ ├── Register gRPC Messages.vi │ │ │ ├── Set adas_GetNumber.vi │ │ │ ├── Set adas_SetNumber.vi │ │ │ ├── Set adas_empty.vi │ │ │ ├── adas_GetNumber.ctl │ │ │ ├── adas_SetNumber.ctl │ │ │ └── adas_empty.ctl │ │ │ ├── RPC Service │ │ │ └── NodeCustomService │ │ │ │ ├── Accessor │ │ │ │ ├── Read Server Internal UEs.vi │ │ │ │ ├── Read Server RPC Methods.vi │ │ │ │ ├── Write Server Internal UEs.vi │ │ │ │ └── Write Server RPC Methods.vi │ │ │ │ ├── NodeCustomService.lvclass │ │ │ │ ├── RPC Methods │ │ │ │ ├── Bind RPC adas_NodeCustomService_GetExample_1.vi │ │ │ │ ├── Bind RPC adas_NodeCustomService_SetExample_1.vi │ │ │ │ ├── Get adas_NodeCustomService_GetExample_1 Request.vi │ │ │ │ ├── Get adas_NodeCustomService_SetExample_1 Request.vi │ │ │ │ ├── RPC Method adas_NodeCustomService_GetExample_1.vi │ │ │ │ ├── RPC Method adas_NodeCustomService_SetExample_1.vi │ │ │ │ ├── Set adas_NodeCustomService_GetExample_1 Response.vi │ │ │ │ └── Set adas_NodeCustomService_SetExample_1 Response.vi │ │ │ │ ├── Server API │ │ │ │ ├── Destroy.vi │ │ │ │ ├── Register gRPC Methods.vi │ │ │ │ ├── Start Async.vi │ │ │ │ └── Start Sync.vi │ │ │ │ └── typeDefs │ │ │ │ ├── Server Internal Message UE.ctl │ │ │ │ ├── Server Internal Message.ctl │ │ │ │ ├── Server Internal UEs.ctl │ │ │ │ └── Server gRPC UEs.ctl │ │ │ └── Run Service.vi │ └── gRPC - Example_2 │ │ └── Example_2_client │ │ ├── Client API │ │ ├── Create Client.vi │ │ └── Destroy Client.vi │ │ ├── Example_2_client.lvlib │ │ ├── RPC Messages │ │ ├── Register gRPC Messages.vi │ │ ├── adas_GetNumber.ctl │ │ ├── adas_SetNumber.ctl │ │ └── adas_empty.ctl │ │ ├── RPC Service │ │ └── NodeCustomService │ │ │ ├── Unary adas_NodeCustomService_GetExample_2.vi │ │ │ └── Unary adas_NodeCustomService_SetExample_2.vi │ │ └── gRPC Client Test.vi ├── Test_HelloWorld.vi ├── Test_RouteGuide_BidirectionalStreaming.vi ├── Test_RouteGuide_RequestStreaming.vi ├── Test_RouteGuide_ResponseStreaming.vi ├── Test_RouteGuide_Unary.vi ├── Test_ServiceNotFoundInServer.vi └── Utilities │ ├── GetControlRef.vi │ └── GetControlValue.vi ├── CMakeTests ├── .gitignore ├── run_test.py ├── testcases │ ├── ExportedFunctionList.json │ └── MessageStructures.json └── tests │ ├── Utils │ └── get_exported_function_list.py │ ├── exported_functions_addition_test.py │ ├── exported_functions_test.py │ └── message_structure_test.py ├── Deprecated ├── Client │ ├── TestClientStreaming.vi │ └── TestServerStreaming.vi ├── Protobuf │ ├── SimpleAnyBuilder.vi │ ├── SimpleAnyPackUnpack.vi │ ├── SimpleBuilder.vi │ ├── SimplePackUnpack.vi │ ├── TestParseWithUnknownFields.vi │ └── TestUnpackFields.vi ├── Protos │ ├── HelloWorld.proto │ ├── data_marshal.proto │ └── google │ │ └── protobuf │ │ └── any.proto ├── Servers │ └── TestDataMarshal │ │ ├── TestDataMarshal Class │ │ ├── Accessors │ │ │ ├── Server Address │ │ │ │ ├── Get Server Address.vi │ │ │ │ └── Set Server Address.vi │ │ │ ├── Server Certificate File │ │ │ │ ├── Get Server Certificate File.vi │ │ │ │ └── Set Server Certificate File.vi │ │ │ ├── Server Internal UEs │ │ │ │ ├── Get Server Internal UEs.vi │ │ │ │ └── Set Server Internal UEs.vi │ │ │ ├── Server Key File │ │ │ │ ├── Get Server Key File.vi │ │ │ │ └── Set Server Key File.vi │ │ │ ├── Server State │ │ │ │ ├── Get Server State.vi │ │ │ │ ├── Set Server State.vi │ │ │ │ ├── State Ref │ │ │ │ │ ├── Get Server State Ref.vi │ │ │ │ │ └── Set Server State Ref.vi │ │ │ │ └── State UE │ │ │ │ │ ├── Get Server State UE.vi │ │ │ │ │ └── Set Server State UE.vi │ │ │ ├── Server Stop UE │ │ │ │ ├── Get Server Stop UE.vi │ │ │ │ └── Set Server Stop UE.vi │ │ │ ├── Server gRPC UEs │ │ │ │ ├── Get Server gRPC UEs.vi │ │ │ │ └── Set Server gRPC UEs.vi │ │ │ └── gRPC ID │ │ │ │ ├── Get gRPC ID.vi │ │ │ │ └── Set gRPC ID.vi │ │ ├── Main.vi │ │ ├── RPC Messages │ │ │ ├── End RPC Call │ │ │ │ └── End RPC Call.vi │ │ │ ├── google_protobuf_Any │ │ │ │ ├── Get google_protobuf_Any.vi │ │ │ │ ├── Set google_protobuf_Any.vi │ │ │ │ └── google_protobuf_Any_Data.ctl │ │ │ ├── queryserver_DataTypeTest │ │ │ │ ├── Get queryserver_DataTypeTest.vi │ │ │ │ ├── Set queryserver_DataTypeTest.vi │ │ │ │ └── queryserver_DataTypeTest_Data.ctl │ │ │ ├── queryserver_InvokeRequest │ │ │ │ ├── Get queryserver_InvokeRequest.vi │ │ │ │ ├── Set queryserver_InvokeRequest.vi │ │ │ │ └── queryserver_InvokeRequest_Data.ctl │ │ │ ├── queryserver_InvokeResponse │ │ │ │ ├── Get queryserver_InvokeResponse.vi │ │ │ │ ├── Set queryserver_InvokeResponse.vi │ │ │ │ └── queryserver_InvokeResponse_Data.ctl │ │ │ ├── queryserver_QueryRequest │ │ │ │ ├── Get queryserver_QueryRequest.vi │ │ │ │ ├── Set queryserver_QueryRequest.vi │ │ │ │ └── queryserver_QueryRequest_Data.ctl │ │ │ ├── queryserver_QueryResponse │ │ │ │ ├── Get queryserver_QueryResponse.vi │ │ │ │ ├── Set queryserver_QueryResponse.vi │ │ │ │ └── queryserver_QueryResponse_Data.ctl │ │ │ ├── queryserver_RegistrationRequest │ │ │ │ ├── Get queryserver_RegistrationRequest.vi │ │ │ │ ├── Set queryserver_RegistrationRequest.vi │ │ │ │ └── queryserver_RegistrationRequest_Data.ctl │ │ │ ├── queryserver_ServerEvent │ │ │ │ ├── Get queryserver_ServerEvent.vi │ │ │ │ ├── Set queryserver_ServerEvent.vi │ │ │ │ └── queryserver_ServerEvent_Data.ctl │ │ │ └── queryserver_TestDataTypesParameters │ │ │ │ ├── Get queryserver_TestDataTypesParameters.vi │ │ │ │ ├── Set queryserver_TestDataTypesParameters.vi │ │ │ │ └── queryserver_TestDataTypesParameters_Data.ctl │ │ ├── RPC Methods │ │ │ ├── queryserver_QueryServer_Invoke │ │ │ │ ├── Messaging │ │ │ │ │ ├── Get queryserver_QueryServer_Invoke Request.vi │ │ │ │ │ └── Set queryserver_QueryServer_Invoke Response.vi │ │ │ │ ├── RPC Method queryserver_QueryServer_Invoke.vi │ │ │ │ └── Registration │ │ │ │ │ └── Bind RPC queryserver_QueryServer_Invoke.vi │ │ │ ├── queryserver_QueryServer_Query │ │ │ │ ├── Messaging │ │ │ │ │ ├── Get queryserver_QueryServer_Query Request.vi │ │ │ │ │ └── Set queryserver_QueryServer_Query Response.vi │ │ │ │ ├── RPC Method queryserver_QueryServer_Query.vi │ │ │ │ └── Registration │ │ │ │ │ └── Bind RPC queryserver_QueryServer_Query.vi │ │ │ ├── queryserver_QueryServer_Register │ │ │ │ ├── Messaging │ │ │ │ │ ├── Get queryserver_QueryServer_Register Request.vi │ │ │ │ │ └── Set queryserver_QueryServer_Register Response.vi │ │ │ │ ├── RPC Method queryserver_QueryServer_Register.vi │ │ │ │ └── Registration │ │ │ │ │ └── Bind RPC queryserver_QueryServer_Register.vi │ │ │ └── queryserver_QueryServer_TestDataTypes │ │ │ │ ├── Messaging │ │ │ │ ├── Get queryserver_QueryServer_TestDataTypes Request.vi │ │ │ │ └── Set queryserver_QueryServer_TestDataTypes Response.vi │ │ │ │ ├── RPC Method queryserver_QueryServer_TestDataTypes.vi │ │ │ │ └── Registration │ │ │ │ └── Bind RPC queryserver_QueryServer_TestDataTypes.vi │ │ ├── Server API │ │ │ ├── Create Server.vi │ │ │ ├── Initialize Server State.vi │ │ │ ├── Register gRPC Messages.vi │ │ │ ├── Register gRPC Methods.vi │ │ │ ├── Register gRPC Parameters.vi │ │ │ ├── Start Async.vi │ │ │ ├── Start Server.vi │ │ │ ├── Start Sync.vi │ │ │ └── Stop Server.vi │ │ ├── TestDataMarshal.lvclass │ │ └── typeDefs │ │ │ ├── Server Internal Message UE.ctl │ │ │ ├── Server Internal Message.ctl │ │ │ ├── Server Internal UEs.ctl │ │ │ ├── Server State Data.ctl │ │ │ ├── Server State.ctl │ │ │ └── Server gRPC UEs.ctl │ │ ├── TestDataMarshal.lvlib │ │ └── gRPC lvSupport │ │ ├── Client API │ │ ├── Client Unary Call.vim │ │ ├── Close Client.vi │ │ └── Create Client.vi │ │ ├── Server API │ │ ├── CompleteMetadataRegistration.vi │ │ ├── CreateSerializationSession.vi │ │ ├── FreeSerializationSession.vi │ │ ├── Message Requests │ │ │ ├── AnyBuilderAddValue.vim │ │ │ ├── AnyBuilderBegin.vi │ │ │ ├── AnyBuilderBeginNestedMessage.vi │ │ │ ├── AnyBuilderBeginRepeatedNestedMessage.vi │ │ │ ├── AnyBuilderBeginRepeatedNestedMessageElement.vi │ │ │ ├── AnyBuilderBuild.vi │ │ │ ├── AnyBuilderBuildToBuffer.vi │ │ │ ├── Complete Call.vi │ │ │ ├── Is Call Cancelled.vi │ │ │ ├── IsAnyOfType.vi │ │ │ ├── PackToAny.vim │ │ │ ├── Read Call Request.vim │ │ │ ├── TryUnpackFromAny.vim │ │ │ ├── UnpackFromAny.vim │ │ │ └── Write Call Response.vim │ │ ├── PackToBuffer.vim │ │ ├── Server │ │ │ ├── Create And Register Generic Method Server Event.vi │ │ │ ├── Create And Register Server Event.vim │ │ │ ├── Create Server.vi │ │ │ ├── Get Server DLL Path.vi │ │ │ ├── Register Message Metadata.vi │ │ │ ├── Start Server.vi │ │ │ └── Stop Server.vi │ │ ├── UnpackFromBuffer.vim │ │ └── typeDefs │ │ │ ├── Any.ctl │ │ │ ├── Generic Method Event Data.ctl │ │ │ ├── Message Element Metadata.ctl │ │ │ ├── Message Element Type.ctl │ │ │ ├── Message Metadata.ctl │ │ │ ├── gRPCId Cluster UE.ctl │ │ │ ├── gRPCId Cluster.ctl │ │ │ └── grpcId.ctl │ │ └── gprc-lvsupport.lvlib └── Tests.lvproj ├── New_ATS ├── .gitignore ├── CreatePythonVirtualEnv.bat ├── Generate Path from String Array.vi ├── Main_CLIWrapper.vi ├── README.md ├── RunPythonClient.bat ├── RunService_CLIWrapper.vi ├── Start RunService.vi ├── Stop RunService.vi ├── Tests │ ├── all-datatypes-oneof │ │ ├── Impl │ │ │ └── Start Sync.vi │ │ ├── Python_client │ │ │ └── GetFeature_client.py │ │ ├── Python_server │ │ │ └── all-datatypes-oneof_server.py │ │ ├── all-datatypes-oneof.proto │ │ └── testcases │ │ │ └── GetFeature.json │ ├── enum-oneof │ │ ├── Impl │ │ │ └── Start Sync.vi │ │ ├── Python_client │ │ │ └── GetFeature_client.py │ │ ├── enum-oneof.proto │ │ └── testcases │ │ │ └── GetFeature.json │ ├── enum-streaming │ │ ├── Impl │ │ │ └── Start Sync.vi │ │ ├── Python_client │ │ │ ├── BidirectionalStreamingMethod_client.py │ │ │ ├── ClientStreamingMethod_client.py │ │ │ ├── ServerStreamingMethod_client.py │ │ │ └── UnaryMethod_client.py │ │ ├── enum-streaming.proto │ │ └── testcases │ │ │ ├── BidirectionalStreamingMethod.json │ │ │ ├── ClientStreamingMethod.json │ │ │ ├── ServerStreamingMethod.json │ │ │ └── UnaryMethod.json │ ├── helloworld │ │ ├── Impl │ │ │ └── Start Sync.vi │ │ ├── Python_client │ │ │ └── SayHello_client.py │ │ ├── Python_server │ │ │ └── helloworld_server.py │ │ ├── helloworld.proto │ │ └── testcases │ │ │ └── SayHello.json │ ├── message-oneof │ │ ├── Impl │ │ │ └── Start Sync.vi │ │ ├── Python_client │ │ │ └── GetFeature_client.py │ │ ├── message-oneof.proto │ │ └── testcases │ │ │ └── GetFeature.json │ ├── multiple-field-oneof │ │ ├── Impl │ │ │ └── Start Sync.vi │ │ ├── Python_client │ │ │ └── GetFeature_client.py │ │ ├── multiple-field-oneof.proto │ │ └── testcases │ │ │ └── GetFeature.json │ ├── nested-oneof │ │ ├── Impl │ │ │ └── Start Sync.vi │ │ ├── Python_client │ │ │ └── GetFeature_client.py │ │ ├── nested-oneof.proto │ │ └── testcases │ │ │ └── GetFeature.json │ ├── oneof-streaming │ │ ├── Impl │ │ │ └── Start Sync.vi │ │ ├── Python_client │ │ │ ├── BidirectionalStreamingMethod_client.py │ │ │ ├── ClientStreamingMethod_client.py │ │ │ ├── ServerStreamingMethod_client.py │ │ │ └── UnaryMethod_client.py │ │ ├── Python_server │ │ │ └── oneof-streaming_server.py │ │ ├── oneof-streaming.proto │ │ └── testcases │ │ │ ├── BidirectionalStreamingMethod.json │ │ │ ├── ClientStreamingMethod.json │ │ │ ├── ServerStreamingMethod.json │ │ │ └── UnaryMethod.json │ ├── routeguide │ │ ├── Impl │ │ │ └── Start Sync.vi │ │ ├── Python_client │ │ │ ├── Getfeature_client.py │ │ │ ├── ListFeatures_client.py │ │ │ ├── RecordRoute_client.py │ │ │ └── RouteChat_client.py │ │ ├── routeguide.proto │ │ └── testcases │ │ │ ├── GetFeature.json │ │ │ ├── ListFeatures.json │ │ │ ├── RecordRoute.json │ │ │ └── RouteChat.json │ ├── sibling-oneof │ │ ├── Impl │ │ │ └── Start Sync.vi │ │ ├── Python_client │ │ │ └── GetFeature_client.py │ │ ├── sibling-oneof.proto │ │ ├── sibling-oneof_server.py │ │ └── testcases │ │ │ └── GetFeature.json │ └── simple-oneof │ │ ├── Impl │ │ └── Start Sync.vi │ │ ├── Python_client │ │ └── GetFeature_client.py │ │ ├── simple-oneof.proto │ │ └── testcases │ │ └── GetFeature.json └── pylib │ ├── Logger.py │ ├── run_tests.py │ ├── stash_server_impl.py │ ├── testlist.json │ └── utility.py ├── Tests.lst ├── gRPC_ATS ├── ATS Framework │ └── Common │ │ ├── Framework │ │ ├── ATS Composite Output.ctl │ │ ├── ATS Framework Fields.ctl │ │ ├── ATS Test Output.ctl │ │ ├── Base Run Java Script.vi │ │ ├── Base Run Tool.vi │ │ ├── Base Set Run Java Script Error.vi │ │ ├── Delete Temp File.vi │ │ ├── Prepend Error Message.vi │ │ ├── Run System Exec.vi │ │ ├── Run Tool Output.ctl │ │ ├── Set Custom Error.vi │ │ ├── Write String to Temp File.vi │ │ ├── ZLIB Common Path to Specific Path.vi │ │ └── ZLIB Specific Path to Common Path.vi │ │ └── Get Local Framework Path.vi ├── LV_ATS.vi ├── SubVIs │ ├── Base Json Pretty Formatter.vi │ ├── DWarns.vi │ ├── FormatOutput.vi │ ├── Get ATS Json Out.vi │ ├── Get Local Framework Fields.vi │ ├── Local Json Pretty Formatter.vi │ ├── OutputWrapper.vi │ ├── Report Results.vi │ ├── Report Strings.vi │ ├── RunVI.vi │ └── _Report Strings.vi ├── TestUtility │ ├── Test_TemplateVI.vit │ └── utility.llb │ │ ├── Add test to error descriptions.vi │ │ ├── array of error description.ctl │ │ ├── error description.ctl │ │ └── error type.ctl └── gRPC_ATS.vi └── run_tests.py /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "third_party/grpc"] 2 | path = third_party/grpc 3 | url = https://github.com/grpc/grpc.git 4 | [submodule "third_party/asio"] 5 | path = third_party/asio 6 | url = https://github.com/chriskohlhoff/asio.git -------------------------------------------------------------------------------- /build-it/LV Build/BuildGRPCPackages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/build-it/LV Build/BuildGRPCPackages.vi -------------------------------------------------------------------------------- /build-it/LV Build/BuildVIPBFile.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/build-it/LV Build/BuildVIPBFile.vi -------------------------------------------------------------------------------- /build-it/LV Build/GetClientServerTemplateBuildSpecPath.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/build-it/LV Build/GetClientServerTemplateBuildSpecPath.vi -------------------------------------------------------------------------------- /build-it/LV Build/GetInstalledVIPMPackages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/build-it/LV Build/GetInstalledVIPMPackages.vi -------------------------------------------------------------------------------- /build-it/LV Build/GetLVServicerBuildSpecPath.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/build-it/LV Build/GetLVServicerBuildSpecPath.vi -------------------------------------------------------------------------------- /build-it/LV Build/GetLVSupportBuildSpecPath.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/build-it/LV Build/GetLVSupportBuildSpecPath.vi -------------------------------------------------------------------------------- /build-it/LV Build/InstallVIPMPackage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/build-it/LV Build/InstallVIPMPackage.vi -------------------------------------------------------------------------------- /build-it/LV Build/StringToBuildVersion.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/build-it/LV Build/StringToBuildVersion.vi -------------------------------------------------------------------------------- /build-it/LV Build/UnInstallGRPCPackages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/build-it/LV Build/UnInstallGRPCPackages.vi -------------------------------------------------------------------------------- /build-it/LV Build/UpdateVIPBVersion.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/build-it/LV Build/UpdateVIPBVersion.vi -------------------------------------------------------------------------------- /build-it/LV Build/UpgradeVIPBVersion.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/build-it/LV Build/UpgradeVIPBVersion.vi -------------------------------------------------------------------------------- /docs/APIreference.md: -------------------------------------------------------------------------------- 1 | # To Be Done -------------------------------------------------------------------------------- /docs/images/HelloAgain-Client-Code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/HelloAgain-Client-Code.png -------------------------------------------------------------------------------- /docs/images/HelloAgain-Server-Code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/HelloAgain-Server-Code.png -------------------------------------------------------------------------------- /docs/images/RouteGuide-GeneratedClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/RouteGuide-GeneratedClass.png -------------------------------------------------------------------------------- /docs/images/RouteGuide-Server-GeneratedClassMethods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/RouteGuide-Server-GeneratedClassMethods.png -------------------------------------------------------------------------------- /docs/images/TestTemplate_CallByReference_HelperImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/TestTemplate_CallByReference_HelperImage.png -------------------------------------------------------------------------------- /docs/images/delete-old-wire-new-lvclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/delete-old-wire-new-lvclass.png -------------------------------------------------------------------------------- /docs/images/drag-new-lvclass-ref-after-regen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/drag-new-lvclass-ref-after-regen.png -------------------------------------------------------------------------------- /docs/images/gRPC-ServerClient[2]-CodeGenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/gRPC-ServerClient[2]-CodeGenerator.png -------------------------------------------------------------------------------- /docs/images/generated-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/generated-project.png -------------------------------------------------------------------------------- /docs/images/grpc-scripting-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/grpc-scripting-main.png -------------------------------------------------------------------------------- /docs/images/grpc-scripting-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/grpc-scripting-menu.png -------------------------------------------------------------------------------- /docs/images/routeguide-bidirectional-streaming-rpcclientcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/routeguide-bidirectional-streaming-rpcclientcode.png -------------------------------------------------------------------------------- /docs/images/routeguide-bidirectionalstreaming-rpcservercode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/routeguide-bidirectionalstreaming-rpcservercode.png -------------------------------------------------------------------------------- /docs/images/routeguide-client-methods-generated-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/routeguide-client-methods-generated-code.png -------------------------------------------------------------------------------- /docs/images/routeguide-client-streaming-rpcclientcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/routeguide-client-streaming-rpcclientcode.png -------------------------------------------------------------------------------- /docs/images/routeguide-clientstreaming-rpcservercode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/routeguide-clientstreaming-rpcservercode.png -------------------------------------------------------------------------------- /docs/images/routeguide-server-streaming-rpcclientcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/routeguide-server-streaming-rpcclientcode.png -------------------------------------------------------------------------------- /docs/images/routeguide-serverstreaming-rpcservercode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/routeguide-serverstreaming-rpcservercode.png -------------------------------------------------------------------------------- /docs/images/routeguide-start-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/routeguide-start-server.png -------------------------------------------------------------------------------- /docs/images/routeguide-unary-rpcclientcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/routeguide-unary-rpcclientcode.png -------------------------------------------------------------------------------- /docs/images/routeguide-unary-rpcservercode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/routeguide-unary-rpcservercode.png -------------------------------------------------------------------------------- /docs/images/rpc-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/rpc-method.png -------------------------------------------------------------------------------- /docs/images/server-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/docs/images/server-main.png -------------------------------------------------------------------------------- /examples/helloworld/helloworld_client/Client API/Create Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_client/Client API/Create Client.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_client/Client API/Destroy Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_client/Client API/Destroy Client.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_client/RPC Messages/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_client/RPC Messages/Register gRPC Messages.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_client/RPC Messages/helloworld_HelloReply.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_client/RPC Messages/helloworld_HelloReply.ctl -------------------------------------------------------------------------------- /examples/helloworld/helloworld_client/RPC Messages/helloworld_HelloRequest.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_client/RPC Messages/helloworld_HelloRequest.ctl -------------------------------------------------------------------------------- /examples/helloworld/helloworld_client/RPC Service/Greeter/Unary helloworld_Greeter_SayHello.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_client/RPC Service/Greeter/Unary helloworld_Greeter_SayHello.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_client/Run greeter_client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_client/Run greeter_client.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Messages/Get helloworld_HelloReply.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Messages/Get helloworld_HelloReply.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Messages/Get helloworld_HelloRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Messages/Get helloworld_HelloRequest.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Messages/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Messages/Register gRPC Messages.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Messages/Set helloworld_HelloReply.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Messages/Set helloworld_HelloReply.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Messages/Set helloworld_HelloRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Messages/Set helloworld_HelloRequest.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Messages/helloworld_HelloReply.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Messages/helloworld_HelloReply.ctl -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Messages/helloworld_HelloRequest.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Messages/helloworld_HelloRequest.ctl -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/Accessor/Read Server Internal UEs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/Accessor/Read Server Internal UEs.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/Accessor/Read Server RPC Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/Accessor/Read Server RPC Methods.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/Accessor/Write Server Internal UEs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/Accessor/Write Server Internal UEs.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/Accessor/Write Server RPC Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/Accessor/Write Server RPC Methods.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/Server API/Destroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/Server API/Destroy.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/Server API/Register gRPC Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/Server API/Register gRPC Methods.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/Server API/Start Async.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/Server API/Start Async.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/Server API/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/Server API/Start Sync.vi -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/typeDefs/Server Internal Message UE.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/typeDefs/Server Internal Message UE.ctl -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/typeDefs/Server Internal Message.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/typeDefs/Server Internal Message.ctl -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/typeDefs/Server Internal UEs.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/typeDefs/Server Internal UEs.ctl -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/RPC Service/Greeter/typeDefs/Server gRPC UEs.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/RPC Service/Greeter/typeDefs/Server gRPC UEs.ctl -------------------------------------------------------------------------------- /examples/helloworld/helloworld_server/Run greeter_server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/helloworld/helloworld_server/Run greeter_server.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Get queryserver_InvokeRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Get queryserver_InvokeRequest.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Get queryserver_InvokeResponse.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Get queryserver_InvokeResponse.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Get queryserver_QueryRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Get queryserver_QueryRequest.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Get queryserver_QueryResponse.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Get queryserver_QueryResponse.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Get queryserver_RegistrationRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Get queryserver_RegistrationRequest.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Get queryserver_ServerEvent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Get queryserver_ServerEvent.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Register gRPC Messages.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Set queryserver_InvokeRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Set queryserver_InvokeRequest.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Set queryserver_InvokeResponse.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Set queryserver_InvokeResponse.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Set queryserver_QueryRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Set queryserver_QueryRequest.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Set queryserver_QueryResponse.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Set queryserver_QueryResponse.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Set queryserver_RegistrationRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Set queryserver_RegistrationRequest.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/Set queryserver_ServerEvent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/Set queryserver_ServerEvent.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/queryserver_InvokeRequest.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/queryserver_InvokeRequest.ctl -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/queryserver_InvokeResponse.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/queryserver_InvokeResponse.ctl -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/queryserver_QueryRequest.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/queryserver_QueryRequest.ctl -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/queryserver_QueryResponse.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/queryserver_QueryResponse.ctl -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/queryserver_RegistrationRequest.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/queryserver_RegistrationRequest.ctl -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Messages/queryserver_ServerEvent.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Messages/queryserver_ServerEvent.ctl -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/Accessor/Read Server Internal UEs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/Accessor/Read Server Internal UEs.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/Accessor/Read Server RPC Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/Accessor/Read Server RPC Methods.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/Accessor/Write Server Internal UEs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/Accessor/Write Server Internal UEs.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/Accessor/Write Server RPC Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/Accessor/Write Server RPC Methods.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/Server API/Destroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/Server API/Destroy.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/Server API/Register gRPC Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/Server API/Register gRPC Methods.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/Server API/Start Async.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/Server API/Start Async.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/Server API/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/Server API/Start Sync.vi -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/typeDefs/Server Internal Message UE.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/typeDefs/Server Internal Message UE.ctl -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/typeDefs/Server Internal Message.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/typeDefs/Server Internal Message.ctl -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/typeDefs/Server Internal UEs.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/typeDefs/Server Internal UEs.ctl -------------------------------------------------------------------------------- /examples/query_server/Query_server/RPC Service/QueryServer/typeDefs/Server gRPC UEs.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/RPC Service/QueryServer/typeDefs/Server gRPC UEs.ctl -------------------------------------------------------------------------------- /examples/query_server/Query_server/Run Service.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/query_server/Query_server/Run Service.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/Bidirectional Streaming RouteGuide Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/Bidirectional Streaming RouteGuide Test.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/Client API/Create Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/Client API/Create Client.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/Client API/Destroy Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/Client API/Destroy Client.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/RPC Messages/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/RPC Messages/Register gRPC Messages.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/RPC Messages/routeguide_Feature.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/RPC Messages/routeguide_Feature.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/RPC Messages/routeguide_Point.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/RPC Messages/routeguide_Point.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/RPC Messages/routeguide_Rectangle.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/RPC Messages/routeguide_Rectangle.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/RPC Messages/routeguide_RouteNote.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/RPC Messages/routeguide_RouteNote.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/RPC Messages/routeguide_RouteSummary.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/RPC Messages/routeguide_RouteSummary.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/RPC Service/RouteGuide/Begin routeguide_RouteGuide_RouteChat.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/RPC Service/RouteGuide/Begin routeguide_RouteGuide_RouteChat.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/RPC Service/RouteGuide/End routeguide_RouteGuide_RecordRoute.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/RPC Service/RouteGuide/End routeguide_RouteGuide_RecordRoute.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/RPC Service/RouteGuide/End routeguide_RouteGuide_RouteChat.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/RPC Service/RouteGuide/End routeguide_RouteGuide_RouteChat.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/RequestStreaming RouteGuide Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/RequestStreaming RouteGuide Test.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/ResponseStreaming RouteGuide Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/ResponseStreaming RouteGuide Test.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_client/Unary RouteGuide Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_client/Unary RouteGuide Test.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/Get routeguide_Feature.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/Get routeguide_Feature.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/Get routeguide_Point.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/Get routeguide_Point.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/Get routeguide_Rectangle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/Get routeguide_Rectangle.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/Get routeguide_RouteNote.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/Get routeguide_RouteNote.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/Get routeguide_RouteSummary.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/Get routeguide_RouteSummary.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/Register gRPC Messages.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/Set routeguide_Feature.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/Set routeguide_Feature.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/Set routeguide_Point.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/Set routeguide_Point.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/Set routeguide_Rectangle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/Set routeguide_Rectangle.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/Set routeguide_RouteNote.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/Set routeguide_RouteNote.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/Set routeguide_RouteSummary.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/Set routeguide_RouteSummary.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/routeguide_Feature.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/routeguide_Feature.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/routeguide_Point.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/routeguide_Point.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/routeguide_Rectangle.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/routeguide_Rectangle.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/routeguide_RouteNote.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/routeguide_RouteNote.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Messages/routeguide_RouteSummary.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Messages/routeguide_RouteSummary.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/Accessor/Read Server Internal UEs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/Accessor/Read Server Internal UEs.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/Accessor/Read Server RPC Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/Accessor/Read Server RPC Methods.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/Accessor/Write Server Internal UEs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/Accessor/Write Server Internal UEs.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/Accessor/Write Server RPC Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/Accessor/Write Server RPC Methods.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/Feature API/Find Feature by Point.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/Feature API/Find Feature by Point.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/Feature API/Get Feature List.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/Feature API/Get Feature List.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/Server API/Destroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/Server API/Destroy.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/Server API/Register gRPC Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/Server API/Register gRPC Methods.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/Server API/Start Async.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/Server API/Start Async.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/Server API/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/Server API/Start Sync.vi -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/typeDefs/Server Internal Message UE.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/typeDefs/Server Internal Message UE.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/typeDefs/Server Internal Message.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/typeDefs/Server Internal Message.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/typeDefs/Server Internal UEs.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/typeDefs/Server Internal UEs.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/RPC Service/RouteGuide/typeDefs/Server gRPC UEs.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/RPC Service/RouteGuide/typeDefs/Server gRPC UEs.ctl -------------------------------------------------------------------------------- /examples/route_guide/route_guide_server/Run Service.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/examples/route_guide/route_guide_server/Run Service.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Client Template/Client API/Create Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Client Template/Client API/Create Client.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Client Template/Client API/Destroy Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Client Template/Client API/Destroy Client.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Client Template/RPC Messages/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Client Template/RPC Messages/Register gRPC Messages.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Client Template/RPC Service/Begin ClientStreamTemplate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Client Template/RPC Service/Begin ClientStreamTemplate.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Client Template/RPC Service/Begin ServerStreamTemplate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Client Template/RPC Service/Begin ServerStreamTemplate.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Client Template/RPC Service/End BidirectionalStreamTemplate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Client Template/RPC Service/End BidirectionalStreamTemplate.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Client Template/RPC Service/End ClientStreamTemplate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Client Template/RPC Service/End ClientStreamTemplate.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Client Template/RPC Service/End ServerStreamTemplate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Client Template/RPC Service/End ServerStreamTemplate.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Client Template/RPC Service/ReadStream ServerStreamTemplate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Client Template/RPC Service/ReadStream ServerStreamTemplate.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Client Template/RPC Service/Unary UnaryTemplate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Client Template/RPC Service/Unary UnaryTemplate.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Oneof Template/FlatToRich.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Oneof Template/FlatToRich.vim -------------------------------------------------------------------------------- /labview source/Client Server Support New/Oneof Template/GetActiveFieldIndex.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Oneof Template/GetActiveFieldIndex.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Oneof Template/GetActiveFieldName.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Oneof Template/GetActiveFieldName.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Oneof Template/GetTemplate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Oneof Template/GetTemplate.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Oneof Template/HasTemplate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Oneof Template/HasTemplate.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Oneof Template/RichToFlat.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Oneof Template/RichToFlat.vim -------------------------------------------------------------------------------- /labview source/Client Server Support New/Oneof Template/SetTemplate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Oneof Template/SetTemplate.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/Cleanup Panel.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/Cleanup Panel.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/Create Services.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/Create Services.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/Generated Descriptors/Generated Descriptors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/Generated Descriptors/Generated Descriptors.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/Get Service Class Instances.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/Get Service Class Instances.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/Initialize Panel.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/Initialize Panel.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/Monitor for Stop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/Monitor for Stop.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/RPC Messages/Get package_template_enum.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/RPC Messages/Get package_template_enum.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/RPC Messages/Get package_templatemessage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/RPC Messages/Get package_templatemessage.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/RPC Messages/MessageConverterProxy.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/RPC Messages/MessageConverterProxy.vim -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/RPC Messages/Register Descriptors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/RPC Messages/Register Descriptors.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/RPC Messages/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/RPC Messages/Register gRPC Messages.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/RPC Messages/Set package_template_enum.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/RPC Messages/Set package_template_enum.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/RPC Messages/Set package_templatemessage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/RPC Messages/Set package_templatemessage.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/RPC Messages/package_templatemessage.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/RPC Messages/package_templatemessage.ctl -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/RPC Service/ServiceName/Server API/Destroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/RPC Service/ServiceName/Server API/Destroy.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/Server Template/Run Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/Server Template/Run Server.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Animation.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Animation.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Display Loader.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Display Loader.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Get Subpanel Ref.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Get Subpanel Ref.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Gifs/Loading Gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Gifs/Loading Gif.gif -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Gifs/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Gifs/loader.gif -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Hide Loader.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Animation API/Hide Loader.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Clear Private Data Cluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Clear Private Data Cluster.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Copy Class Item.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Copy Class Item.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Create LVClass Copy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Create LVClass Copy.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Delete Item from LVClass.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Delete Item from LVClass.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Delete LVClass Item.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Delete LVClass Item.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Find Class in ProjectItem.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Find Class in ProjectItem.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Find Item in LVClass.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Find Item in LVClass.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Get LVClass Item Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Get LVClass Item Path.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Get VIRef from ClassItem.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Get VIRef from ClassItem.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Open LVClass.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Open LVClass.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Ref to LVClass.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Ref to LVClass.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Class API/Save LVClass.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Class API/Save LVClass.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5000.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5000.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5001.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5001.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5002.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5002.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5003.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5003.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5004.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5004.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5005.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5005.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5006.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5006.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5007.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5007.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5008.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5008.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5009.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5009.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5010.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5010.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5011.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5011.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5012.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5012.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5013.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5013.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5014.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5014.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5015.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5015.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5016.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5016.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5017.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5017.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5018.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5018.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5019.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5019.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5020.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5020.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5021.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5021.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5022.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5022.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5023.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5023.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5024.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5024.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5025.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5025.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5026.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5026.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5027.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5027.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5028.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5028.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5029.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5029.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5030.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5030.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5031.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5031.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5032.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Error Handling/Error 5032.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Add File to Lib.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Add File to Lib.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Add LVClass to Lib.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Add LVClass to Lib.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Copy Library Item.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Copy Library Item.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Delete Item from Library.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Delete Item from Library.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Delete Library Item.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Delete Library Item.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Find Item in Library.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Find Item in Library.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Get Library Item Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Get Library Item Path.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Get VIRef from Library.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Get VIRef from Library.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Get grpc-library ref.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Get grpc-library ref.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Open Library.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Open Library.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Ref To Library.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Ref To Library.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Library API/Save Library.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Library API/Save Library.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Logging API/Log CodeGen Run.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Logging API/Log CodeGen Run.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Logging API/Log gRPC Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Logging API/Log gRPC Data.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Main.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Main.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Add Oneof Index To Metadata.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Add Oneof Index To Metadata.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Copy PDC To VI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Copy PDC To VI.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Create LVClass for Oneof.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Create LVClass for Oneof.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Create OneOf Accessors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Create OneOf Accessors.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Create OneOf Field Accessors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Create OneOf Field Accessors.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Create Oneof Case Structure.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Create Oneof Case Structure.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Delete Oneof Template Files.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Delete Oneof Template Files.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Find Oneof Field Getter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Find Oneof Field Getter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Get Oneof Template Directory.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Get Oneof Template Directory.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Get Rich to Flat Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Get Rich to Flat Info.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Get Typedef Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Get Typedef Name.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/OneOf Constants/Get Constant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/OneOf Constants/Get Constant.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Script Field Conversion.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Script Field Conversion.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/ScriptOneofClassConverter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/ScriptOneofClassConverter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Set LVClass Const Label.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Set LVClass Const Label.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Set LVClass Control Label.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Set LVClass Control Label.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Update OneOf Field Accessor.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Oneof API/Update OneOf Field Accessor.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Add File to ProjectItem.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Add File to ProjectItem.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Close Project.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Close Project.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Create Folder at Location.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Create Folder at Location.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Create Lib in Project.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Create Lib in Project.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Create Virtual FolderItem.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Create Virtual FolderItem.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Delete In Folder.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Delete In Folder.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Find Item in ProjectItem.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Find Item in ProjectItem.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Get Application Refs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Get Application Refs.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Get MyComputer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Get MyComputer.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Get Project Root.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Get Project Root.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Get Target ref.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Get Target ref.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Open Project.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Open Project.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Save Project.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Save Project.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Project API/Set Relative Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Project API/Set Relative Path.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Proto Parser API/GetProtoParseError.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Proto Parser API/GetProtoParseError.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Proto Parser API/Proto Parser.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Proto Parser API/Proto Parser.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Resources/Create Cluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Resources/Create Cluster.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Resources/Script.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Resources/Script.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Copy Template Files.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Copy Template Files.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Enum Accessor.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Enum Accessor.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Enum Getter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Enum Getter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Enum Mapper.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Enum Mapper.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Enum Setter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Enum Setter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Message Accessor.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Message Accessor.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Message Accessors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Message Accessors.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Message Getter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Message Getter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Message Setter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create Message Setter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create RPC Client Method.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create RPC Client Method.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create RPC Method.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Create RPC Method.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Generate Descriptor VI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Generate Descriptor VI.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Get Or Create Typedef.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Get Or Create Typedef.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Get RPC Method Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Get RPC Method Name.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Get RPC Methods Binds.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Get RPC Methods Binds.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Get RPC Methods Paths.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Get RPC Methods Paths.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Get RPC Type.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Get RPC Type.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Populate gRPC Events.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Populate gRPC Events.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Script RPC Client VI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Script RPC Client VI.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Set Enum Control Strings.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Set Enum Control Strings.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Set VI Icon Text Layer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Set VI Icon Text Layer.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/StringSplitIntoThree.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/StringSplitIntoThree.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Bind Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Bind Methods.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Bind RPC Template.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Bind RPC Template.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Enum Getter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Enum Getter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Enum Mapper.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Enum Mapper.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Enum Setter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Enum Setter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Message Getter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Message Getter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Message Setter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Message Setter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Messages MetaData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Messages MetaData.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Method Accessor.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Method Accessor.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Method Accessors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Method Accessors.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Method Getter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Method Getter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Method Setter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Method Setter.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Template Files.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/Update Template Files.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/UpdateVIIcon.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/Top Level API/UpdateVIIcon.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/Enum Metadata (Scripting).ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/Enum Metadata (Scripting).ctl -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/Message Element Type.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/Message Element Type.ctl -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/Message Metadata (Scripting).ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/Message Metadata (Scripting).ctl -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/Method Accessor Type.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/Method Accessor Type.ctl -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/Project Settings.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/Project Settings.ctl -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/RPC Method Parameters.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/RPC Method Parameters.ctl -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/RPC Method Types.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/TypeDefs/RPC Method Types.ctl -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/VI API/Block Diagram API/BD CleanUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/VI API/Block Diagram API/BD CleanUp.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/VI API/General VI API/Cleanup VI BD.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/VI API/General VI API/Cleanup VI BD.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/VI API/General VI API/Cleanup VI FP.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/VI API/General VI API/Cleanup VI FP.vi -------------------------------------------------------------------------------- /labview source/Client Server Support New/gRPC Scripting Tools/VI API/General VI API/Save VI at Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/Client Server Support New/gRPC Scripting Tools/VI API/General VI API/Save VI at Path.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/ServiceBase/Accessors/Read Server Stop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/ServiceBase/Accessors/Read Server Stop.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/ServiceBase/Accessors/Read gRPCid.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/ServiceBase/Accessors/Read gRPCid.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/ServiceBase/Server API/Destroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/ServiceBase/Server API/Destroy.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/ServiceBase/Server API/Instantiate.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/ServiceBase/Server API/Instantiate.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/ServiceBase/Server API/Register gRPC Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/ServiceBase/Server API/Register gRPC Methods.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/ServiceBase/Server API/Start Async.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/ServiceBase/Server API/Start Async.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/ServiceBase/Server API/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/ServiceBase/Server API/Start Sync.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/ServiceBase/Server API/Start.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/ServiceBase/Server API/Start.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/Server Address/Get Server Address.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/Server Address/Get Server Address.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/Server Address/Set Server Address.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/Server Address/Set Server Address.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/Server Key File/Get Server Key File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/Server Key File/Get Server Key File.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/Server Key File/Set Server Key File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/Server Key File/Set Server Key File.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/Server State/Get Server State.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/Server State/Get Server State.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/Server State/Set Server State.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/Server State/Set Server State.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/Server State/State Ref/Get Server State Ref.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/Server State/State Ref/Get Server State Ref.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/Server State/State Ref/Set Server State Ref.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/Server State/State Ref/Set Server State Ref.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/Server State/State UE/Get Server State UE.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/Server State/State UE/Get Server State UE.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/Server State/State UE/Set Server State UE.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/Server State/State UE/Set Server State UE.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/gRPC ID/Get gRPC ID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/gRPC ID/Get gRPC ID.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Accessors/gRPC ID/Set gRPC ID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Accessors/gRPC ID/Set gRPC ID.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Run Servicer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Run Servicer.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Server API/Create Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Server API/Create Server.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Server API/Initialize Server State.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Server API/Initialize Server State.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Server API/Start Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Server API/Start Server.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/Server API/Stop Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/Server API/Stop Server.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/typeDefs/Server Internal Message.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/typeDefs/Server Internal Message.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/typeDefs/Server State Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/typeDefs/Server State Data.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/typeDefs/Server State.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/typeDefs/Server State.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Servicer/Servicer/typeDefs/Server gRPC UEs.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Servicer/Servicer/typeDefs/Server gRPC UEs.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Client Begin Bidirectional Streaming Call.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Client Begin Bidirectional Streaming Call.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Client Begin Client Streaming Call.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Client Begin Client Streaming Call.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Client Begin Server Streaming Call.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Client Begin Server Streaming Call.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Client Cancel Call Context.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Client Cancel Call Context.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Client Cancel Call.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Client Cancel Call.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Client Complete Client Streaming Call.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Client Complete Client Streaming Call.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Client Complete Streaming Call.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Client Complete Streaming Call.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Client Read From Stream.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Client Read From Stream.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Client Unary Call.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Client Unary Call.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Client Write To Stream.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Client Write To Stream.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Client Writes Complete.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Client Writes Complete.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Close Client Context.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Close Client Context.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Close Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Close Client.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Create Client Context.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Create Client Context.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Client API/Create Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Client API/Create Client.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Cluster to gRPC message/Apply Package Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Cluster to gRPC message/Apply Package Name.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Cluster to gRPC message/Cluster to Element Details.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Cluster to gRPC message/Cluster to Element Details.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Cluster to gRPC message/Cluster to gRPC LabVIEW Message.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Cluster to gRPC message/Cluster to gRPC LabVIEW Message.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Cluster to gRPC message/Element to Enum Metadata.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Cluster to gRPC message/Element to Enum Metadata.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Cluster to gRPC message/Get Embedded Message Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Cluster to gRPC message/Get Embedded Message Name.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Cluster to gRPC message/Register Cluster.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Cluster to gRPC message/Register Cluster.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/CompleteMetadataRegistration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/CompleteMetadataRegistration.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/CreateSerializationSession.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/CreateSerializationSession.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/FreeSerializationSession.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/FreeSerializationSession.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/FreeUnpackedFields.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/FreeUnpackedFields.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/GetUnpackedField.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/GetUnpackedField.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderAddValue.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderAddValue.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderBegin.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderBegin.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderBeginNestedMessage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderBeginNestedMessage.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderBeginRepeatedNestedMessage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderBeginRepeatedNestedMessage.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderBuild.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderBuild.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderBuildToBuffer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/AnyBuilderBuildToBuffer.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/Complete Call.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/Complete Call.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/Is Call Cancelled.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/Is Call Cancelled.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/IsAnyOfType.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/IsAnyOfType.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/PackToAny.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/PackToAny.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/Read Call Request.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/Read Call Request.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/TryUnpackFromAny.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/TryUnpackFromAny.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/UnpackFromAny.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/UnpackFromAny.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Message Requests/Write Call Response.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Message Requests/Write Call Response.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/PackToBuffer.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/PackToBuffer.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Server/Create And Register Generic Method Server Event.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Server/Create And Register Generic Method Server Event.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Server/Create And Register Server Event.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Server/Create And Register Server Event.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Server/Create Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Server/Create Server.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Server/Get Server DLL Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Server/Get Server DLL Path.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Server/Register Enum Metadata.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Server/Register Enum Metadata.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Server/Register Message Metadata.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Server/Register Message Metadata.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Server/Register Reflection Descriptors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Server/Register Reflection Descriptors.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Server/Start Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Server/Start Server.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Server/Stop Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Server/Stop Server.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Set Call Status.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Set Call Status.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/Translate Protobuf Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/Translate Protobuf Error.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/UnpackFieldsFromAny.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/UnpackFieldsFromAny.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/UnpackFieldsFromBuffer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/UnpackFieldsFromBuffer.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/UnpackFromBuffer.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/UnpackFromBuffer.vim -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/typeDefs/Enum Metadata.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/typeDefs/Enum Metadata.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/typeDefs/Generic Method Event Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/typeDefs/Generic Method Event Data.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/typeDefs/Message Element Metadata.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/typeDefs/Message Element Metadata.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/typeDefs/Message Element Type.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/typeDefs/Message Element Type.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/typeDefs/Message Metadata.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/typeDefs/Message Metadata.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/typeDefs/gRPC Status Code.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/typeDefs/gRPC Status Code.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/typeDefs/gRPCId Cluster UE.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/typeDefs/gRPCId Cluster UE.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Server API/typeDefs/gRPCId Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Server API/typeDefs/gRPCId Cluster.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/Any.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/Any.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/Get LV Enum Value from Proto Value.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/Get LV Enum Value from Proto Value.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/Get Proto Enum Value from LV Value.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/Get Proto Enum Value from LV Value.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/Is Feature Enabled.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/Is Feature Enabled.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/Is Message Well Known Type.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/Is Message Well Known Type.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/Set LVRT Module Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/Set LVRT Module Path.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/To Message Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/To Message Name.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/To Well Known Type.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/To Well Known Type.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/TranslateGrpcError.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/TranslateGrpcError.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/Wait On Occurrence.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/Wait On Occurrence.vi -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/Well Known Types.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/Well Known Types.ctl -------------------------------------------------------------------------------- /labview source/gRPC lv Support/Shared/grpcId.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/labview source/gRPC lv Support/Shared/grpcId.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_client/Client API/Create Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_client/Client API/Create Client.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_client/Client API/Destroy Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_client/Client API/Destroy Client.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Messages/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Messages/Register gRPC Messages.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Messages/helloworld_ByeReply.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Messages/helloworld_ByeReply.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Messages/helloworld_ByeRequest.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Messages/helloworld_ByeRequest.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Messages/helloworld_HelloReply.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Messages/helloworld_HelloReply.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Messages/helloworld_HelloRequest.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Messages/helloworld_HelloRequest.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Service/Greeter/Greeter SayBye.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Service/Greeter/Greeter SayBye.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Service/Greeter/Greeter SayHello.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_client/RPC Service/Greeter/Greeter SayHello.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_client/gRPC Client Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_client/gRPC Client Test.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Get helloworld_ByeReply.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Get helloworld_ByeReply.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Get helloworld_ByeRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Get helloworld_ByeRequest.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Get helloworld_HelloReply.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Get helloworld_HelloReply.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Get helloworld_HelloRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Get helloworld_HelloRequest.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Register gRPC Messages.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Set helloworld_ByeReply.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Set helloworld_ByeReply.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Set helloworld_ByeRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Set helloworld_ByeRequest.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Set helloworld_HelloReply.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Set helloworld_HelloReply.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Set helloworld_HelloRequest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/Set helloworld_HelloRequest.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/helloworld_ByeReply.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/helloworld_ByeReply.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/helloworld_ByeRequest.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/helloworld_ByeRequest.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/helloworld_HelloReply.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/helloworld_HelloReply.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/helloworld_HelloRequest.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Messages/helloworld_HelloRequest.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Service/Greeter/Server API/Destroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Service/Greeter/Server API/Destroy.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Service/Greeter/Server API/Start Async.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Service/Greeter/Server API/Start Async.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Service/Greeter/Server API/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/RPC Service/Greeter/Server API/Start Sync.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/Generated_server/Run Service.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/Generated_server/Run Service.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCallAbortTests/UnaryClientAbortTest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCallAbortTests/UnaryClientAbortTest.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/BiDiStreamingCancellationTest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/BiDiStreamingCancellationTest.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/ClientStreamingCancellationTest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/ClientStreamingCancellationTest.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/ServerStreamingCancellationTest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/ServerStreamingCancellationTest.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/UnaryClientCancellationTest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/UnaryClientCancellationTest.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_client/Client API/Create Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_client/Client API/Create Client.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_client/Client API/Destroy Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_client/Client API/Destroy Client.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/Register gRPC Messages.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/routeguide_Feature.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/routeguide_Feature.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/routeguide_Point.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/routeguide_Point.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/routeguide_Rectangle.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/routeguide_Rectangle.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/routeguide_RouteNote.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/routeguide_RouteNote.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/routeguide_RouteSummary.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_client/RPC Messages/routeguide_RouteSummary.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_client/RequestStreaming RouteGuide Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_client/RequestStreaming RouteGuide Test.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_client/ResponseStreaming RouteGuide Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_client/ResponseStreaming RouteGuide Test.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_client/Unary RouteGuide Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_client/Unary RouteGuide Test.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/Is Call Cancelled Global.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/Is Call Cancelled Global.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Get routeguide_Feature.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Get routeguide_Feature.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Get routeguide_Point.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Get routeguide_Point.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Get routeguide_Rectangle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Get routeguide_Rectangle.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Get routeguide_RouteNote.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Get routeguide_RouteNote.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Register gRPC Messages.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Set routeguide_Feature.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Set routeguide_Feature.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Set routeguide_Point.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Set routeguide_Point.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Set routeguide_Rectangle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Set routeguide_Rectangle.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Set routeguide_RouteNote.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/Set routeguide_RouteNote.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/routeguide_Feature.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/routeguide_Feature.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/routeguide_Point.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/routeguide_Point.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/routeguide_Rectangle.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/routeguide_Rectangle.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/routeguide_RouteNote.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/routeguide_RouteNote.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/routeguide_RouteSummary.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/RPC Messages/routeguide_RouteSummary.ctl -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/Run Service.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/Run Service.vi -------------------------------------------------------------------------------- /tests/AutoTests/ClientCancellationTests/route_guide_server/Server Error Global.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/ClientCancellationTests/route_guide_server/Server Error Global.vi -------------------------------------------------------------------------------- /tests/AutoTests/Service_NotSupported_InServer/Crash Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Service_NotSupported_InServer/Crash Test.vi -------------------------------------------------------------------------------- /tests/AutoTests/Service_NotSupported_InServer/CrastTest.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Service_NotSupported_InServer/CrastTest.PNG -------------------------------------------------------------------------------- /tests/AutoTests/Service_NotSupported_InServer/gRPC - Example_1/Example_1_server/Run Service.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Service_NotSupported_InServer/gRPC - Example_1/Example_1_server/Run Service.vi -------------------------------------------------------------------------------- /tests/AutoTests/Service_NotSupported_InServer/gRPC - Example_2/Example_2_client/gRPC Client Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Service_NotSupported_InServer/gRPC - Example_2/Example_2_client/gRPC Client Test.vi -------------------------------------------------------------------------------- /tests/AutoTests/Test_HelloWorld.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Test_HelloWorld.vi -------------------------------------------------------------------------------- /tests/AutoTests/Test_RouteGuide_BidirectionalStreaming.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Test_RouteGuide_BidirectionalStreaming.vi -------------------------------------------------------------------------------- /tests/AutoTests/Test_RouteGuide_RequestStreaming.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Test_RouteGuide_RequestStreaming.vi -------------------------------------------------------------------------------- /tests/AutoTests/Test_RouteGuide_ResponseStreaming.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Test_RouteGuide_ResponseStreaming.vi -------------------------------------------------------------------------------- /tests/AutoTests/Test_RouteGuide_Unary.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Test_RouteGuide_Unary.vi -------------------------------------------------------------------------------- /tests/AutoTests/Test_ServiceNotFoundInServer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Test_ServiceNotFoundInServer.vi -------------------------------------------------------------------------------- /tests/AutoTests/Utilities/GetControlRef.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Utilities/GetControlRef.vi -------------------------------------------------------------------------------- /tests/AutoTests/Utilities/GetControlValue.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/AutoTests/Utilities/GetControlValue.vi -------------------------------------------------------------------------------- /tests/CMakeTests/.gitignore: -------------------------------------------------------------------------------- 1 | exported_function_list.json 2 | venv 3 | logs/* -------------------------------------------------------------------------------- /tests/Deprecated/Client/TestClientStreaming.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Client/TestClientStreaming.vi -------------------------------------------------------------------------------- /tests/Deprecated/Client/TestServerStreaming.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Client/TestServerStreaming.vi -------------------------------------------------------------------------------- /tests/Deprecated/Protobuf/SimpleAnyBuilder.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Protobuf/SimpleAnyBuilder.vi -------------------------------------------------------------------------------- /tests/Deprecated/Protobuf/SimpleAnyPackUnpack.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Protobuf/SimpleAnyPackUnpack.vi -------------------------------------------------------------------------------- /tests/Deprecated/Protobuf/SimpleBuilder.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Protobuf/SimpleBuilder.vi -------------------------------------------------------------------------------- /tests/Deprecated/Protobuf/SimplePackUnpack.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Protobuf/SimplePackUnpack.vi -------------------------------------------------------------------------------- /tests/Deprecated/Protobuf/TestParseWithUnknownFields.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Protobuf/TestParseWithUnknownFields.vi -------------------------------------------------------------------------------- /tests/Deprecated/Protobuf/TestUnpackFields.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Protobuf/TestUnpackFields.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Accessors/gRPC ID/Get gRPC ID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Accessors/gRPC ID/Get gRPC ID.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Accessors/gRPC ID/Set gRPC ID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Accessors/gRPC ID/Set gRPC ID.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Main.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Main.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Create Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Create Server.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Initialize Server State.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Initialize Server State.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Register gRPC Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Register gRPC Messages.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Register gRPC Methods.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Register gRPC Methods.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Start Async.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Start Async.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Start Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Start Server.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Start Sync.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Stop Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/Server API/Stop Server.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/typeDefs/Server Internal Message.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/typeDefs/Server Internal Message.ctl -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/typeDefs/Server Internal UEs.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/typeDefs/Server Internal UEs.ctl -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/typeDefs/Server State Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/typeDefs/Server State Data.ctl -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/typeDefs/Server State.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/typeDefs/Server State.ctl -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/typeDefs/Server gRPC UEs.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/TestDataMarshal Class/typeDefs/Server gRPC UEs.ctl -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Client API/Client Unary Call.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Client API/Client Unary Call.vim -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Client API/Close Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Client API/Close Client.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Client API/Create Client.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Client API/Create Client.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/CompleteMetadataRegistration.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/CompleteMetadataRegistration.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/CreateSerializationSession.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/CreateSerializationSession.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/FreeSerializationSession.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/FreeSerializationSession.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Message Requests/Complete Call.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Message Requests/Complete Call.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Message Requests/IsAnyOfType.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Message Requests/IsAnyOfType.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Message Requests/PackToAny.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Message Requests/PackToAny.vim -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/PackToBuffer.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/PackToBuffer.vim -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Server/Create Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Server/Create Server.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Server/Get Server DLL Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Server/Get Server DLL Path.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Server/Start Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Server/Start Server.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Server/Stop Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/Server/Stop Server.vi -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/UnpackFromBuffer.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/UnpackFromBuffer.vim -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/Any.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/Any.ctl -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/Message Element Type.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/Message Element Type.ctl -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/Message Metadata.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/Message Metadata.ctl -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/gRPCId Cluster UE.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/gRPCId Cluster UE.ctl -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/gRPCId Cluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/gRPCId Cluster.ctl -------------------------------------------------------------------------------- /tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/grpcId.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/Deprecated/Servers/TestDataMarshal/gRPC lvSupport/Server API/typeDefs/grpcId.ctl -------------------------------------------------------------------------------- /tests/New_ATS/.gitignore: -------------------------------------------------------------------------------- 1 | *.lvproj 2 | venv 3 | *.lvlpv 4 | *.aliases 5 | *.pyi 6 | *_pb2_grpc.py 7 | *_pb2.py 8 | *.aliases 9 | *.lvproj 10 | *.lvlps 11 | Generated_client 12 | Generated_server 13 | logs -------------------------------------------------------------------------------- /tests/New_ATS/Generate Path from String Array.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Generate Path from String Array.vi -------------------------------------------------------------------------------- /tests/New_ATS/Main_CLIWrapper.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Main_CLIWrapper.vi -------------------------------------------------------------------------------- /tests/New_ATS/RunService_CLIWrapper.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/RunService_CLIWrapper.vi -------------------------------------------------------------------------------- /tests/New_ATS/Start RunService.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Start RunService.vi -------------------------------------------------------------------------------- /tests/New_ATS/Stop RunService.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Stop RunService.vi -------------------------------------------------------------------------------- /tests/New_ATS/Tests/all-datatypes-oneof/Impl/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Tests/all-datatypes-oneof/Impl/Start Sync.vi -------------------------------------------------------------------------------- /tests/New_ATS/Tests/enum-oneof/Impl/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Tests/enum-oneof/Impl/Start Sync.vi -------------------------------------------------------------------------------- /tests/New_ATS/Tests/enum-streaming/Impl/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Tests/enum-streaming/Impl/Start Sync.vi -------------------------------------------------------------------------------- /tests/New_ATS/Tests/helloworld/Impl/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Tests/helloworld/Impl/Start Sync.vi -------------------------------------------------------------------------------- /tests/New_ATS/Tests/message-oneof/Impl/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Tests/message-oneof/Impl/Start Sync.vi -------------------------------------------------------------------------------- /tests/New_ATS/Tests/multiple-field-oneof/Impl/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Tests/multiple-field-oneof/Impl/Start Sync.vi -------------------------------------------------------------------------------- /tests/New_ATS/Tests/nested-oneof/Impl/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Tests/nested-oneof/Impl/Start Sync.vi -------------------------------------------------------------------------------- /tests/New_ATS/Tests/oneof-streaming/Impl/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Tests/oneof-streaming/Impl/Start Sync.vi -------------------------------------------------------------------------------- /tests/New_ATS/Tests/routeguide/Impl/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Tests/routeguide/Impl/Start Sync.vi -------------------------------------------------------------------------------- /tests/New_ATS/Tests/sibling-oneof/Impl/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Tests/sibling-oneof/Impl/Start Sync.vi -------------------------------------------------------------------------------- /tests/New_ATS/Tests/simple-oneof/Impl/Start Sync.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/New_ATS/Tests/simple-oneof/Impl/Start Sync.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/ATS Composite Output.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/ATS Composite Output.ctl -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/ATS Framework Fields.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/ATS Framework Fields.ctl -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/ATS Test Output.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/ATS Test Output.ctl -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/Base Run Java Script.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/Base Run Java Script.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/Base Run Tool.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/Base Run Tool.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/Base Set Run Java Script Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/Base Set Run Java Script Error.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/Delete Temp File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/Delete Temp File.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/Prepend Error Message.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/Prepend Error Message.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/Run System Exec.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/Run System Exec.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/Run Tool Output.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/Run Tool Output.ctl -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/Set Custom Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/Set Custom Error.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/Write String to Temp File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/Write String to Temp File.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/ZLIB Common Path to Specific Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/ZLIB Common Path to Specific Path.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Framework/ZLIB Specific Path to Common Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Framework/ZLIB Specific Path to Common Path.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/ATS Framework/Common/Get Local Framework Path.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/ATS Framework/Common/Get Local Framework Path.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/LV_ATS.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/LV_ATS.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/SubVIs/Base Json Pretty Formatter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/SubVIs/Base Json Pretty Formatter.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/SubVIs/DWarns.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/SubVIs/DWarns.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/SubVIs/FormatOutput.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/SubVIs/FormatOutput.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/SubVIs/Get ATS Json Out.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/SubVIs/Get ATS Json Out.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/SubVIs/Get Local Framework Fields.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/SubVIs/Get Local Framework Fields.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/SubVIs/Local Json Pretty Formatter.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/SubVIs/Local Json Pretty Formatter.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/SubVIs/OutputWrapper.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/SubVIs/OutputWrapper.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/SubVIs/Report Results.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/SubVIs/Report Results.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/SubVIs/Report Strings.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/SubVIs/Report Strings.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/SubVIs/RunVI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/SubVIs/RunVI.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/SubVIs/_Report Strings.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/SubVIs/_Report Strings.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/TestUtility/Test_TemplateVI.vit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/TestUtility/Test_TemplateVI.vit -------------------------------------------------------------------------------- /tests/gRPC_ATS/TestUtility/utility.llb/Add test to error descriptions.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/TestUtility/utility.llb/Add test to error descriptions.vi -------------------------------------------------------------------------------- /tests/gRPC_ATS/TestUtility/utility.llb/array of error description.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/TestUtility/utility.llb/array of error description.ctl -------------------------------------------------------------------------------- /tests/gRPC_ATS/TestUtility/utility.llb/error description.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/TestUtility/utility.llb/error description.ctl -------------------------------------------------------------------------------- /tests/gRPC_ATS/TestUtility/utility.llb/error type.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/TestUtility/utility.llb/error type.ctl -------------------------------------------------------------------------------- /tests/gRPC_ATS/gRPC_ATS.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ni/grpc-labview/60727eb0c44bcf7205c97b18462afd20bd138a97/tests/gRPC_ATS/gRPC_ATS.vi --------------------------------------------------------------------------------