Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | make CallFlags internal, expose WaitForReady | Jan Tattermusch | 2016-12-02 |
| | |||
* | wire passing of C# CallFlags to C core | Jan Tattermusch | 2016-12-02 |
| | |||
* | remove existing profiling points | Jan Tattermusch | 2016-11-11 |
| | |||
* | support threadpool tracing | Jan Tattermusch | 2016-11-11 |
| | |||
* | lazy initialize streamingResponseCallFinishedTcs | Jan Tattermusch | 2016-10-27 |
| | |||
* | Merge pull request #8508 from jtattermusch/csharp_lazy_serverside_call_peer | Jan Tattermusch | 2016-10-26 |
|\ | | | | | Make ServerCallContext.Peer lazy | ||
* | | SafeHandleZeroIsInvalid cleanup | Jan Tattermusch | 2016-10-26 |
| | | |||
| * | Make ServerCallContext.Peer lazy | Jan Tattermusch | 2016-10-26 |
|/ | |||
* | provide framework independent version of Task.CompletedTask | Jan Tattermusch | 2016-10-24 |
| | |||
* | Merge pull request #8396 from ↵ | Jan Tattermusch | 2016-10-24 |
|\ | | | | | | | | | jtattermusch/csharp_server_streamline_request_call_invocations C# server streamline request call invocations | ||
* | | get rid of compiler warnings | Jan Tattermusch | 2016-10-21 |
| | | |||
* | | Marshal.GetDelegateForFunctionPointer(IntPtr, Type) is obsolete in | Jan Tattermusch | 2016-10-21 |
| | | | | | | | | netstandard | ||
* | | address XMLdoc related warnings | Jan Tattermusch | 2016-10-21 |
| | | |||
| * | introduce separate grpcsharp_request_call_context | Jan Tattermusch | 2016-10-21 |
|/ | |||
* | refactor NoSuchMethodCallHandler | Jan Tattermusch | 2016-10-18 |
| | |||
* | Merge remote-tracking branch 'google/v1.0.x' into master-upmerge-from-deep-under | Nicolas "Pixel" Noble | 2016-09-29 |
|\ | |||
| * | update the comment to reflect current state | Jan Tattermusch | 2016-09-22 |
| | | |||
| * | dont require libc-dev on coreclr | Jan Tattermusch | 2016-09-21 |
| | | |||
* | | simplify delayed streaming write logic | Jan Tattermusch | 2016-09-16 |
| | | |||
* | | dont allow new writes if theres a write with delayed completion | Jan Tattermusch | 2016-09-16 |
| | | |||
| * | fixed formatting | Jan Tattermusch | 2016-09-15 |
| | | |||
| * | make native extension loader work for published netcoreapp1.0 too | Jan Tattermusch | 2016-09-15 |
| | | |||
* | | throw correct exception failed writes | Jan Tattermusch | 2016-09-15 |
| | | |||
* | | fixed formatting | Jan Tattermusch | 2016-09-08 |
| | | |||
* | | make native extension loader work for published netcoreapp1.0 too | Jan Tattermusch | 2016-09-08 |
|/ | |||
* | Overhaul how the native extension is found, loaded and used | Jon Skeet | 2016-07-15 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The goal of this is to fix #7230. The changes here are: - The layout in the nuget package; the files are now in `/runtimes/{os}/native/{library}` - The filename of each library, which now includes the architecture, e.g `grpc_csharp_ext.x64.dll` - The targets file used to copy those files in msbuild-based projects; note that we now don't build up a folder structure. - The way the functions are found Before this change, on Linux and OSX we used to find library symbols manually, and use DllImport on Windows. With this change, the name of the library file changes based on architecture, so `DllImport` doesn't work. Instead, we have to use `GetProcAddress` to fetch the function. This is further convoluted by the convention on Windows-x86 to prefix the function name with `_` and suffix it based on the stack size of the arguments. We can't easily tell the argument size here, so we just try 0, 4, 8...128. (128 bytes should be enough for anyone.) This is inefficient, but it's a one-time hit with a known number of functions, and doesn't seem to have any significant impact. The benefit of this in code is we don't need the DllImports any more, and we don't need to conditionally use `FindSymbol` - we just use it for everything, so things are rather more uniform and tidy. The further benefit of this is that the library name is no longer tied to a particular filename format - so if someone wanted to have a directory with the libraries for every version in, with the version in the filename, we'd handle that just fine. (At least once Testing: - Windows: - Console app under msbuild, dotnet cli and DNX - ASP.NET Classic under msbuild - ASP.NET Core (still running under net451) - Ubuntu 16.04 - Console app under dotnet cli, run with dotnet run and mono - OSX: - Console app under dotnet cli, run with dotnet run and mono Under dotnet cli, a dependency on `Microsoft.NETCore.Platforms` is required in order to force the libraries to be copied. This change does *not* further enable .NET Core. It attempts to keep the existing experimental .NET Core project files in line with the msbuild files, but I expect further work to be required for .NET Core, which has a different build/publication model. | ||
* | prevent race between grpcsharp_server_request_call and ↵ | Jan Tattermusch | 2016-06-23 |
| | | | | grpc_completion_queue_shutdown | ||
* | Merge pull request #6104 from jtattermusch/coreclr_support | Jan Tattermusch | 2016-06-22 |
|\ | | | | | Add experimental CoreCLR support | ||
| * | migrate everything to netstandard1.5 | Jan Tattermusch | 2016-06-16 |
| | | |||
* | | deduplicate send finished handler | Jan Tattermusch | 2016-06-14 |
| | | |||
| * | add support for CoreCLR | Jan Tattermusch | 2016-06-14 |
|/ | |||
* | support GrpcEnvironment.KillServersAsync | Jan Tattermusch | 2016-06-06 |
| | |||
* | serverside shutdown hook test | Jan Tattermusch | 2016-06-06 |
| | |||
* | make environment shutdown asynchronous | Jan Tattermusch | 2016-06-06 |
| | |||
* | Merge pull request #6712 from jtattermusch/csharp_more_completion_queues | Jan Tattermusch | 2016-05-26 |
|\ | | | | | C# add support for multiple completion queues in GrpcThreadPool. | ||
| * | add missing pinvoke method | Jan Tattermusch | 2016-05-26 |
| | | |||
| * | name the threadpool threads before starting | Jan Tattermusch | 2016-05-25 |
| | | |||
| * | eliminate global completion registry | Jan Tattermusch | 2016-05-25 |
| | | |||
| * | completion registry is per cq | Jan Tattermusch | 2016-05-25 |
| | | |||
| * | add support for multiple cqs to GrpcThreadPool | Jan Tattermusch | 2016-05-25 |
| | | |||
* | | add TODO | Jan Tattermusch | 2016-05-23 |
| | | |||
* | | reorder clientside send preconditions | Jan Tattermusch | 2016-05-23 |
| | | |||
* | | clientside writes should finish with TaskCanceledException if cancel was ↵ | Jan Tattermusch | 2016-05-23 |
| | | | | | | | | previously requested | ||
* | | reorder members for readability | Jan Tattermusch | 2016-05-23 |
| | | |||
* | | improve ordering of serverside send checks | Jan Tattermusch | 2016-05-23 |
| | | |||
* | | allow short-circuiting the send operation | Jan Tattermusch | 2016-05-23 |
| | | |||
* | | simplify implementation of SendCloseFromClient | Jan Tattermusch | 2016-05-23 |
| | | |||
* | | preparation for write semantics cleanup | Jan Tattermusch | 2016-05-23 |
| | | |||
* | | add TODOs and remove unused imports | Jan Tattermusch | 2016-05-23 |
| | | |||
* | | remote AsyncCompletion | Jan Tattermusch | 2016-05-23 |
| | |