├── .dockerignore ├── .gitignore ├── LICENSE ├── Oxygen.sln ├── README.md ├── sample ├── Basic.yaml ├── ClienActorSample │ ├── ClienActorSample.csproj │ ├── HelloActorService.cs │ ├── HelloRepository.cs │ ├── IHelloRepository.cs │ └── MyActor.cs ├── Client │ ├── .dockerignore │ ├── CallServiceImpl.cs │ ├── Client.csproj │ ├── Dockerfile │ ├── Dockerfile.Debug │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── start.bat ├── DaprActorProxyGenerator │ ├── DaprActorProxyGenerator.csproj │ └── DefaultSourceGenerator.cs ├── RemoteInterface │ ├── ICallService.cs │ ├── IHelloService.cs │ └── RemoteInterface.csproj ├── RunBasic.bat ├── Server │ ├── .dockerignore │ ├── Dockerfile │ ├── Dockerfile.Debug │ ├── HelloEventHandler.cs │ ├── HelloServiceImpl.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Server.csproj │ └── start.bat ├── start-dapr-debug.yaml ├── start-dapr.yaml ├── start-sample.bat ├── stop-sample.bat └── test │ └── start-dapr-debug.yaml └── src ├── Oxygen.Client ├── Oxygen.Client.ServerProxyFactory │ ├── Implements │ │ ├── EventBus.cs │ │ ├── ServiceProxyFactory.cs │ │ └── StateManager.cs │ ├── Interface │ │ ├── IEventBus.cs │ │ ├── IServiceProxyFactory.cs │ │ └── IStateManager.cs │ ├── Module.cs │ └── Oxygen.Client.ServerProxyFactory.csproj └── Oxygen.Client.ServerSymbol │ ├── Actors │ └── ActorSendDto.cs │ ├── Events │ ├── DefaultEventHandlerResponse.cs │ ├── EventHandleRequest.cs │ ├── EventHandleRequestData.cs │ ├── EventHandleRequestExtension.cs │ ├── EventHandlerAttribute.cs │ ├── IActorService.cs │ └── IEventHandler.cs │ ├── FuncType.cs │ ├── Oxygen.Client.ServerSymbol.csproj │ ├── RemoteFuncAttribute.cs │ ├── RemoteServiceAttribute.cs │ └── Store │ └── StateStore.cs ├── Oxygen.Mesh └── Oxygen.Mesh.Dapr │ ├── ActorServiceFactory.cs │ ├── BaseActorService.cs │ ├── BasicActor.cs │ ├── Model │ └── ActorStateModel.cs │ ├── Oxygen.Mesh.Dapr.csproj │ ├── OxygenActorStartup.cs │ └── ProxyCodeGeneratorTemplate.cs ├── Oxygen.Server └── Oxygen.Server.Kestrel │ ├── Implements │ ├── BaseRequestDelegate.cs │ ├── HttpMessageHandler.cs │ ├── KestrelServerHandler.cs │ ├── OxygenApplication.cs │ ├── OxygenHostService.cs │ ├── OxygenStartup.cs │ ├── RequestDelegate.cs │ └── RequestDelegateFactory.cs │ ├── Interface │ ├── IMessageHandler.cs │ ├── IServerHandler.cs │ ├── MessageType.cs │ └── Model │ │ └── SubscribeModel.cs │ ├── Module.cs │ └── Oxygen.Server.Kestrel.csproj └── Oxygen ├── Oxygen.Common ├── DaprConfig.cs ├── Implements │ ├── ConsoleLog.cs │ ├── HttpContextExtension.cs │ ├── InProcessEventBus │ │ ├── InProcessEventBusManager.cs │ │ ├── InProcessPipline.cs │ │ ├── InProcessPiplineFactory.cs │ │ └── SubscribeInProcessFactory.cs │ ├── JsonConverters │ │ └── TextJsonConverter.cs │ ├── OxygenHttpContextWapper.cs │ ├── OxygenIocContainer.cs │ ├── ReflectionHelper.cs │ └── SerializeImpl.cs ├── Interface │ ├── IInProcessEventBus.cs │ ├── ILogger.cs │ ├── ISerialize.cs │ └── ISubscribeInProcessFactory.cs ├── Module.cs ├── Oxygen.Common.csproj └── Properties │ └── launchSettings.json ├── Oxygen.IocModule ├── ContainerBuilderExtension.cs └── Oxygen.IocModule.csproj └── Oxygen.ProxyGenerator ├── Implements ├── LocalMethodAopProvider.cs ├── RemoteDispatchProxy.cs ├── RemoteMessageSender.cs ├── RemoteMessageSenderDelegate.cs └── RemoteProxyGenerator.cs ├── Interface ├── IRemoteMessageSender.cs ├── IRemoteMessageSenderDelegate.cs └── SendType.cs ├── Module.cs └── Oxygen.ProxyGenerator.csproj /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/LICENSE -------------------------------------------------------------------------------- /Oxygen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/Oxygen.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/README.md -------------------------------------------------------------------------------- /sample/Basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Basic.yaml -------------------------------------------------------------------------------- /sample/ClienActorSample/ClienActorSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/ClienActorSample/ClienActorSample.csproj -------------------------------------------------------------------------------- /sample/ClienActorSample/HelloActorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/ClienActorSample/HelloActorService.cs -------------------------------------------------------------------------------- /sample/ClienActorSample/HelloRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/ClienActorSample/HelloRepository.cs -------------------------------------------------------------------------------- /sample/ClienActorSample/IHelloRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/ClienActorSample/IHelloRepository.cs -------------------------------------------------------------------------------- /sample/ClienActorSample/MyActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/ClienActorSample/MyActor.cs -------------------------------------------------------------------------------- /sample/Client/.dockerignore: -------------------------------------------------------------------------------- 1 | *.yaml 2 | *.bat 3 | *.sh -------------------------------------------------------------------------------- /sample/Client/CallServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Client/CallServiceImpl.cs -------------------------------------------------------------------------------- /sample/Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Client/Client.csproj -------------------------------------------------------------------------------- /sample/Client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Client/Dockerfile -------------------------------------------------------------------------------- /sample/Client/Dockerfile.Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Client/Dockerfile.Debug -------------------------------------------------------------------------------- /sample/Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Client/Program.cs -------------------------------------------------------------------------------- /sample/Client/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Client/Properties/launchSettings.json -------------------------------------------------------------------------------- /sample/Client/start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Client/start.bat -------------------------------------------------------------------------------- /sample/DaprActorProxyGenerator/DaprActorProxyGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/DaprActorProxyGenerator/DaprActorProxyGenerator.csproj -------------------------------------------------------------------------------- /sample/DaprActorProxyGenerator/DefaultSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/DaprActorProxyGenerator/DefaultSourceGenerator.cs -------------------------------------------------------------------------------- /sample/RemoteInterface/ICallService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/RemoteInterface/ICallService.cs -------------------------------------------------------------------------------- /sample/RemoteInterface/IHelloService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/RemoteInterface/IHelloService.cs -------------------------------------------------------------------------------- /sample/RemoteInterface/RemoteInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/RemoteInterface/RemoteInterface.csproj -------------------------------------------------------------------------------- /sample/RunBasic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/RunBasic.bat -------------------------------------------------------------------------------- /sample/Server/.dockerignore: -------------------------------------------------------------------------------- 1 | *.yaml 2 | *.bat 3 | *.sh -------------------------------------------------------------------------------- /sample/Server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Server/Dockerfile -------------------------------------------------------------------------------- /sample/Server/Dockerfile.Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Server/Dockerfile.Debug -------------------------------------------------------------------------------- /sample/Server/HelloEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Server/HelloEventHandler.cs -------------------------------------------------------------------------------- /sample/Server/HelloServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Server/HelloServiceImpl.cs -------------------------------------------------------------------------------- /sample/Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Server/Program.cs -------------------------------------------------------------------------------- /sample/Server/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Server/Properties/launchSettings.json -------------------------------------------------------------------------------- /sample/Server/Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Server/Server.csproj -------------------------------------------------------------------------------- /sample/Server/start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/Server/start.bat -------------------------------------------------------------------------------- /sample/start-dapr-debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/start-dapr-debug.yaml -------------------------------------------------------------------------------- /sample/start-dapr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/start-dapr.yaml -------------------------------------------------------------------------------- /sample/start-sample.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/start-sample.bat -------------------------------------------------------------------------------- /sample/stop-sample.bat: -------------------------------------------------------------------------------- 1 | kubectl delete -f start-dapr.yaml -------------------------------------------------------------------------------- /sample/test/start-dapr-debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/sample/test/start-dapr-debug.yaml -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Implements/EventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Implements/EventBus.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Implements/ServiceProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Implements/ServiceProxyFactory.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Implements/StateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Implements/StateManager.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Interface/IEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Interface/IEventBus.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Interface/IServiceProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Interface/IServiceProxyFactory.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Interface/IStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Interface/IStateManager.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Module.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Oxygen.Client.ServerProxyFactory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerProxyFactory/Oxygen.Client.ServerProxyFactory.csproj -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/Actors/ActorSendDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/Actors/ActorSendDto.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/DefaultEventHandlerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/DefaultEventHandlerResponse.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/EventHandleRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/EventHandleRequest.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/EventHandleRequestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/EventHandleRequestData.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/EventHandleRequestExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/EventHandleRequestExtension.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/EventHandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/EventHandlerAttribute.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/IActorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/IActorService.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/IEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/Events/IEventHandler.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/FuncType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/FuncType.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/Oxygen.Client.ServerSymbol.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/Oxygen.Client.ServerSymbol.csproj -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/RemoteFuncAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/RemoteFuncAttribute.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/RemoteServiceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/RemoteServiceAttribute.cs -------------------------------------------------------------------------------- /src/Oxygen.Client/Oxygen.Client.ServerSymbol/Store/StateStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Client/Oxygen.Client.ServerSymbol/Store/StateStore.cs -------------------------------------------------------------------------------- /src/Oxygen.Mesh/Oxygen.Mesh.Dapr/ActorServiceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Mesh/Oxygen.Mesh.Dapr/ActorServiceFactory.cs -------------------------------------------------------------------------------- /src/Oxygen.Mesh/Oxygen.Mesh.Dapr/BaseActorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Mesh/Oxygen.Mesh.Dapr/BaseActorService.cs -------------------------------------------------------------------------------- /src/Oxygen.Mesh/Oxygen.Mesh.Dapr/BasicActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Mesh/Oxygen.Mesh.Dapr/BasicActor.cs -------------------------------------------------------------------------------- /src/Oxygen.Mesh/Oxygen.Mesh.Dapr/Model/ActorStateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Mesh/Oxygen.Mesh.Dapr/Model/ActorStateModel.cs -------------------------------------------------------------------------------- /src/Oxygen.Mesh/Oxygen.Mesh.Dapr/Oxygen.Mesh.Dapr.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Mesh/Oxygen.Mesh.Dapr/Oxygen.Mesh.Dapr.csproj -------------------------------------------------------------------------------- /src/Oxygen.Mesh/Oxygen.Mesh.Dapr/OxygenActorStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Mesh/Oxygen.Mesh.Dapr/OxygenActorStartup.cs -------------------------------------------------------------------------------- /src/Oxygen.Mesh/Oxygen.Mesh.Dapr/ProxyCodeGeneratorTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Mesh/Oxygen.Mesh.Dapr/ProxyCodeGeneratorTemplate.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/BaseRequestDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/BaseRequestDelegate.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/HttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/HttpMessageHandler.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/KestrelServerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/KestrelServerHandler.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/OxygenApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/OxygenApplication.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/OxygenHostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/OxygenHostService.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/OxygenStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/OxygenStartup.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/RequestDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/RequestDelegate.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/RequestDelegateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Implements/RequestDelegateFactory.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Interface/IMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Interface/IMessageHandler.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Interface/IServerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Interface/IServerHandler.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Interface/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Interface/MessageType.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Interface/Model/SubscribeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Interface/Model/SubscribeModel.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Module.cs -------------------------------------------------------------------------------- /src/Oxygen.Server/Oxygen.Server.Kestrel/Oxygen.Server.Kestrel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen.Server/Oxygen.Server.Kestrel/Oxygen.Server.Kestrel.csproj -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/DaprConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/DaprConfig.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Implements/ConsoleLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Implements/ConsoleLog.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Implements/HttpContextExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Implements/HttpContextExtension.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Implements/InProcessEventBus/InProcessEventBusManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Implements/InProcessEventBus/InProcessEventBusManager.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Implements/InProcessEventBus/InProcessPipline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Implements/InProcessEventBus/InProcessPipline.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Implements/InProcessEventBus/InProcessPiplineFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Implements/InProcessEventBus/InProcessPiplineFactory.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Implements/InProcessEventBus/SubscribeInProcessFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Implements/InProcessEventBus/SubscribeInProcessFactory.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Implements/JsonConverters/TextJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Implements/JsonConverters/TextJsonConverter.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Implements/OxygenHttpContextWapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Implements/OxygenHttpContextWapper.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Implements/OxygenIocContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Implements/OxygenIocContainer.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Implements/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Implements/ReflectionHelper.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Implements/SerializeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Implements/SerializeImpl.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Interface/IInProcessEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Interface/IInProcessEventBus.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Interface/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Interface/ILogger.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Interface/ISerialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Interface/ISerialize.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Interface/ISubscribeInProcessFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Interface/ISubscribeInProcessFactory.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Module.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Oxygen.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Oxygen.Common.csproj -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.Common/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.Common/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.IocModule/ContainerBuilderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.IocModule/ContainerBuilderExtension.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.IocModule/Oxygen.IocModule.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.IocModule/Oxygen.IocModule.csproj -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.ProxyGenerator/Implements/LocalMethodAopProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.ProxyGenerator/Implements/LocalMethodAopProvider.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.ProxyGenerator/Implements/RemoteDispatchProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.ProxyGenerator/Implements/RemoteDispatchProxy.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.ProxyGenerator/Implements/RemoteMessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.ProxyGenerator/Implements/RemoteMessageSender.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.ProxyGenerator/Implements/RemoteMessageSenderDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.ProxyGenerator/Implements/RemoteMessageSenderDelegate.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.ProxyGenerator/Implements/RemoteProxyGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.ProxyGenerator/Implements/RemoteProxyGenerator.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.ProxyGenerator/Interface/IRemoteMessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.ProxyGenerator/Interface/IRemoteMessageSender.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.ProxyGenerator/Interface/IRemoteMessageSenderDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.ProxyGenerator/Interface/IRemoteMessageSenderDelegate.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.ProxyGenerator/Interface/SendType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.ProxyGenerator/Interface/SendType.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.ProxyGenerator/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.ProxyGenerator/Module.cs -------------------------------------------------------------------------------- /src/Oxygen/Oxygen.ProxyGenerator/Oxygen.ProxyGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd797994/Oxygen-Dapr/HEAD/src/Oxygen/Oxygen.ProxyGenerator/Oxygen.ProxyGenerator.csproj --------------------------------------------------------------------------------