├── .gitignore ├── .travis.yml ├── .vscode ├── launch.json └── tasks.json ├── Kadder.Maui ├── Kadder.Maui.csproj ├── MauiHostExtension.cs └── Platforms │ ├── Android │ └── PlatformClass1.cs │ ├── MacCatalyst │ └── PlatformClass1.cs │ ├── Tizen │ └── PlatformClass1.cs │ ├── Windows │ └── PlatformClass1.cs │ └── iOS │ └── PlatformClass1.cs ├── Kadder.Test ├── Grpc │ ├── Client │ │ └── ServicerProxyGeneratorTest.cs │ └── HelperTest.cs ├── Kadder.Test.csproj └── UnitTest1.cs ├── Kadder.sln ├── Kadder ├── Grpc │ ├── CallType.cs │ ├── Client │ │ ├── AsyncRequestStream.cs │ │ ├── AsyncResponseStream.cs │ │ ├── Client.cs │ │ ├── ClientBuilder.cs │ │ ├── ClientStreamResult.cs │ │ ├── DuplexStreamResult.cs │ │ ├── Extension.cs │ │ ├── GrpcProxyer.cs │ │ ├── HostExtension.cs │ │ ├── Options │ │ │ ├── GrpcChannelOptions.cs │ │ │ └── GrpcClientOptions.cs │ │ ├── ServiceExtension.cs │ │ ├── ServicerInvoker.cs │ │ ├── ServicerProxyGenerator.cs │ │ └── StreamMessage.cs │ ├── Helper.cs │ └── Server │ │ ├── AsyncRequestStream.cs │ │ ├── AsyncResponseStream.cs │ │ ├── GrpcServerBuilder.cs │ │ ├── GrpcServerOptions.cs │ │ ├── HostExtension.cs │ │ ├── IGrpcServices.cs │ │ ├── ServicerProxyGenerator.cs │ │ └── StreamExtension.cs ├── GrpcConfiguration.cs ├── GrpcMethodCheck.cs ├── GrpcOptions.cs ├── Kadder.csproj ├── KadderBuilder.cs ├── Messaging │ ├── EmptyMessage.cs │ ├── EmptyMessageResult.cs │ ├── IMessagingContext.cs │ ├── KServicer.cs │ ├── KServicerAttribute.cs │ ├── MessagingContext.cs │ └── NoGRPCMethodAttribute.cs ├── Streaming │ ├── IAsyncRequestStream.cs │ ├── IAsyncResponseStream.cs │ ├── IAsyncStream.cs │ ├── IDuplexStream.cs │ ├── IStreamReader.cs │ └── IStreamWriter.cs └── Utils │ ├── Bcl.cs │ ├── Ensure.cs │ ├── Exetension.cs │ ├── IBinarySerializer.cs │ ├── IJsonSerializer.cs │ ├── IMessagingServicer.cs │ ├── IObjectProvider.cs │ ├── IObjectScope.cs │ ├── InvitationAlgorithm.cs │ ├── KadderOptions.cs │ ├── Message.cs │ ├── NewtonsoftJsonSerializer.cs │ ├── NullJsonSerializer.cs │ ├── ObjectProvider.cs │ ├── ObjectScope.cs │ ├── OperationType.cs │ ├── ProtobufBinarySerializer.cs │ ├── RefelectionHelper.cs │ └── ServicerHelper.cs ├── LICENSE ├── README.md ├── Simple ├── Duplex │ ├── Client │ │ ├── Client.csproj │ │ ├── CodeGenerate_dll │ │ ├── Program.cs │ │ └── appsettings.json │ ├── Duplex.sln │ ├── Protocol │ │ ├── INoteServicer.cs │ │ ├── Protocol.csproj │ │ └── Protocols │ │ │ ├── CreateNoteRequest.cs │ │ │ └── CreateNoteResponse.cs │ └── Server │ │ ├── Kadder.Grpc.Server_dll │ │ ├── NoteServicer.cs │ │ ├── Program.cs │ │ ├── Server.csproj │ │ └── appsettings.json └── Server │ ├── Kadder.Grpc.Server_dll │ ├── NoteServicer.cs │ ├── Program.cs │ ├── Protocols │ ├── CreateNoteRequest.cs │ └── CreateNoteResponse.cs │ ├── Server.csproj │ ├── Server.sln │ ├── appsettings.json │ └── libgrpc_csharp_ext.arm64.dylib └── docs ├── CNAME ├── _config.yml ├── duplex.md ├── duplex.org ├── index.md ├── install.md ├── server.md └── server.org /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Kadder.Maui/Kadder.Maui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.Maui/Kadder.Maui.csproj -------------------------------------------------------------------------------- /Kadder.Maui/MauiHostExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.Maui/MauiHostExtension.cs -------------------------------------------------------------------------------- /Kadder.Maui/Platforms/Android/PlatformClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.Maui/Platforms/Android/PlatformClass1.cs -------------------------------------------------------------------------------- /Kadder.Maui/Platforms/MacCatalyst/PlatformClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.Maui/Platforms/MacCatalyst/PlatformClass1.cs -------------------------------------------------------------------------------- /Kadder.Maui/Platforms/Tizen/PlatformClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.Maui/Platforms/Tizen/PlatformClass1.cs -------------------------------------------------------------------------------- /Kadder.Maui/Platforms/Windows/PlatformClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.Maui/Platforms/Windows/PlatformClass1.cs -------------------------------------------------------------------------------- /Kadder.Maui/Platforms/iOS/PlatformClass1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.Maui/Platforms/iOS/PlatformClass1.cs -------------------------------------------------------------------------------- /Kadder.Test/Grpc/Client/ServicerProxyGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.Test/Grpc/Client/ServicerProxyGeneratorTest.cs -------------------------------------------------------------------------------- /Kadder.Test/Grpc/HelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.Test/Grpc/HelperTest.cs -------------------------------------------------------------------------------- /Kadder.Test/Kadder.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.Test/Kadder.Test.csproj -------------------------------------------------------------------------------- /Kadder.Test/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.Test/UnitTest1.cs -------------------------------------------------------------------------------- /Kadder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder.sln -------------------------------------------------------------------------------- /Kadder/Grpc/CallType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/CallType.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/AsyncRequestStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/AsyncRequestStream.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/AsyncResponseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/AsyncResponseStream.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/Client.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/ClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/ClientBuilder.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/ClientStreamResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/ClientStreamResult.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/DuplexStreamResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/DuplexStreamResult.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/Extension.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/GrpcProxyer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/GrpcProxyer.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/HostExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/HostExtension.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/Options/GrpcChannelOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/Options/GrpcChannelOptions.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/Options/GrpcClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/Options/GrpcClientOptions.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/ServiceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/ServiceExtension.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/ServicerInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/ServicerInvoker.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/ServicerProxyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/ServicerProxyGenerator.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Client/StreamMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Client/StreamMessage.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Helper.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Server/AsyncRequestStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Server/AsyncRequestStream.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Server/AsyncResponseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Server/AsyncResponseStream.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Server/GrpcServerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Server/GrpcServerBuilder.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Server/GrpcServerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Server/GrpcServerOptions.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Server/HostExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Server/HostExtension.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Server/IGrpcServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Server/IGrpcServices.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Server/ServicerProxyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Server/ServicerProxyGenerator.cs -------------------------------------------------------------------------------- /Kadder/Grpc/Server/StreamExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Grpc/Server/StreamExtension.cs -------------------------------------------------------------------------------- /Kadder/GrpcConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/GrpcConfiguration.cs -------------------------------------------------------------------------------- /Kadder/GrpcMethodCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/GrpcMethodCheck.cs -------------------------------------------------------------------------------- /Kadder/GrpcOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/GrpcOptions.cs -------------------------------------------------------------------------------- /Kadder/Kadder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Kadder.csproj -------------------------------------------------------------------------------- /Kadder/KadderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/KadderBuilder.cs -------------------------------------------------------------------------------- /Kadder/Messaging/EmptyMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Messaging/EmptyMessage.cs -------------------------------------------------------------------------------- /Kadder/Messaging/EmptyMessageResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Messaging/EmptyMessageResult.cs -------------------------------------------------------------------------------- /Kadder/Messaging/IMessagingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Messaging/IMessagingContext.cs -------------------------------------------------------------------------------- /Kadder/Messaging/KServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Messaging/KServicer.cs -------------------------------------------------------------------------------- /Kadder/Messaging/KServicerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Messaging/KServicerAttribute.cs -------------------------------------------------------------------------------- /Kadder/Messaging/MessagingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Messaging/MessagingContext.cs -------------------------------------------------------------------------------- /Kadder/Messaging/NoGRPCMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Messaging/NoGRPCMethodAttribute.cs -------------------------------------------------------------------------------- /Kadder/Streaming/IAsyncRequestStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Streaming/IAsyncRequestStream.cs -------------------------------------------------------------------------------- /Kadder/Streaming/IAsyncResponseStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Streaming/IAsyncResponseStream.cs -------------------------------------------------------------------------------- /Kadder/Streaming/IAsyncStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Streaming/IAsyncStream.cs -------------------------------------------------------------------------------- /Kadder/Streaming/IDuplexStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Streaming/IDuplexStream.cs -------------------------------------------------------------------------------- /Kadder/Streaming/IStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Streaming/IStreamReader.cs -------------------------------------------------------------------------------- /Kadder/Streaming/IStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Streaming/IStreamWriter.cs -------------------------------------------------------------------------------- /Kadder/Utils/Bcl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/Bcl.cs -------------------------------------------------------------------------------- /Kadder/Utils/Ensure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/Ensure.cs -------------------------------------------------------------------------------- /Kadder/Utils/Exetension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/Exetension.cs -------------------------------------------------------------------------------- /Kadder/Utils/IBinarySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/IBinarySerializer.cs -------------------------------------------------------------------------------- /Kadder/Utils/IJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/IJsonSerializer.cs -------------------------------------------------------------------------------- /Kadder/Utils/IMessagingServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/IMessagingServicer.cs -------------------------------------------------------------------------------- /Kadder/Utils/IObjectProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/IObjectProvider.cs -------------------------------------------------------------------------------- /Kadder/Utils/IObjectScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/IObjectScope.cs -------------------------------------------------------------------------------- /Kadder/Utils/InvitationAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/InvitationAlgorithm.cs -------------------------------------------------------------------------------- /Kadder/Utils/KadderOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/KadderOptions.cs -------------------------------------------------------------------------------- /Kadder/Utils/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/Message.cs -------------------------------------------------------------------------------- /Kadder/Utils/NewtonsoftJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/NewtonsoftJsonSerializer.cs -------------------------------------------------------------------------------- /Kadder/Utils/NullJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/NullJsonSerializer.cs -------------------------------------------------------------------------------- /Kadder/Utils/ObjectProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/ObjectProvider.cs -------------------------------------------------------------------------------- /Kadder/Utils/ObjectScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/ObjectScope.cs -------------------------------------------------------------------------------- /Kadder/Utils/OperationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/OperationType.cs -------------------------------------------------------------------------------- /Kadder/Utils/ProtobufBinarySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/ProtobufBinarySerializer.cs -------------------------------------------------------------------------------- /Kadder/Utils/RefelectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/RefelectionHelper.cs -------------------------------------------------------------------------------- /Kadder/Utils/ServicerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Kadder/Utils/ServicerHelper.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/README.md -------------------------------------------------------------------------------- /Simple/Duplex/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Client/Client.csproj -------------------------------------------------------------------------------- /Simple/Duplex/Client/CodeGenerate_dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Client/CodeGenerate_dll -------------------------------------------------------------------------------- /Simple/Duplex/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Client/Program.cs -------------------------------------------------------------------------------- /Simple/Duplex/Client/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Client/appsettings.json -------------------------------------------------------------------------------- /Simple/Duplex/Duplex.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Duplex.sln -------------------------------------------------------------------------------- /Simple/Duplex/Protocol/INoteServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Protocol/INoteServicer.cs -------------------------------------------------------------------------------- /Simple/Duplex/Protocol/Protocol.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Protocol/Protocol.csproj -------------------------------------------------------------------------------- /Simple/Duplex/Protocol/Protocols/CreateNoteRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Protocol/Protocols/CreateNoteRequest.cs -------------------------------------------------------------------------------- /Simple/Duplex/Protocol/Protocols/CreateNoteResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Protocol/Protocols/CreateNoteResponse.cs -------------------------------------------------------------------------------- /Simple/Duplex/Server/Kadder.Grpc.Server_dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Server/Kadder.Grpc.Server_dll -------------------------------------------------------------------------------- /Simple/Duplex/Server/NoteServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Server/NoteServicer.cs -------------------------------------------------------------------------------- /Simple/Duplex/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Server/Program.cs -------------------------------------------------------------------------------- /Simple/Duplex/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Server/Server.csproj -------------------------------------------------------------------------------- /Simple/Duplex/Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Duplex/Server/appsettings.json -------------------------------------------------------------------------------- /Simple/Server/Kadder.Grpc.Server_dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Server/Kadder.Grpc.Server_dll -------------------------------------------------------------------------------- /Simple/Server/NoteServicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Server/NoteServicer.cs -------------------------------------------------------------------------------- /Simple/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Server/Program.cs -------------------------------------------------------------------------------- /Simple/Server/Protocols/CreateNoteRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Server/Protocols/CreateNoteRequest.cs -------------------------------------------------------------------------------- /Simple/Server/Protocols/CreateNoteResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Server/Protocols/CreateNoteResponse.cs -------------------------------------------------------------------------------- /Simple/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Server/Server.csproj -------------------------------------------------------------------------------- /Simple/Server/Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Server/Server.sln -------------------------------------------------------------------------------- /Simple/Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Server/appsettings.json -------------------------------------------------------------------------------- /Simple/Server/libgrpc_csharp_ext.arm64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/Simple/Server/libgrpc_csharp_ext.arm64.dylib -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | kadder.wanbin.tech -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/duplex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/docs/duplex.md -------------------------------------------------------------------------------- /docs/duplex.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/docs/duplex.org -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/docs/server.md -------------------------------------------------------------------------------- /docs/server.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binwan-dev/Kadder/HEAD/docs/server.org --------------------------------------------------------------------------------