IRpcRequestHandler.cs 342 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace JsonRPC4.Router.Abstractions
  7. {
  8. public interface IRpcRequestHandler
  9. {
  10. Task<bool> HandleRequestAsync(RpcPath requestPath, Stream requestBody, IRouteContext routeContext, Stream responseBody);
  11. }
  12. }