qed- commented on PR #41348:
URL: https://github.com/apache/arrow/pull/41348#issuecomment-2076836991
Thanks for your comments. My use case is to run a Flight GRPC server on .Net
framework (due to it depending on legacy assemblies that don't work with .net
core).
I've modified the PR to move the namespace as you suggested.
The other option would be to create a public class that implements code
similar to the below, happy to do it this way if you think this is a better
option.
```
using Apache.Arrow.Flight.Protocol;
using Apache.Arrow.Flight.Server;
var flightServer = new FlightServerImpl();
var server = new Server
{
Services = { FlightService.BindService(new
FlightServerImplementation(flightServer)) },
Ports = { new ServerPort("0.0.0.0", 5001, ServerCredentials.Insecure) }
}
};
server.Start();
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]