This is an automated email from the ASF dual-hosted git repository.
Cole-Greer pushed a change to branch java-streaming
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
omit 446c346293 Fix connection corruption from double-LastHttpContent in
streaming pipeline
omit 6ebd0706fc fix tests
omit b4b8e62f76 Add streaming HTTP response support to gremlin-driver
add 30129ad373 Support Streaming in .NET (#3403)
add 68f9e7862b Add streaming HTTP response support to gremlin-driver
add 19d05182ce fix tests
add 12dd369055 Fix connection corruption from double-LastHttpContent in
streaming pipeline
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (446c346293)
\
N -- N -- N refs/heads/java-streaming (12dd369055)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
CHANGELOG.asciidoc | 2 +
docs/src/reference/gremlin-variants.asciidoc | 6 +-
docs/src/upgrade/release-4.x.x.asciidoc | 56 ++
.../src/Gremlin.Net/Driver/Connection.cs | 194 +++---
.../Gremlin.Net/Driver/GremlinClientExtensions.cs | 29 +-
.../src/Gremlin.Net/Driver/IMessageSerializer.cs | 12 +-
.../Gremlin.Net/Driver/Messages/ResponseMessage.cs | 75 ---
.../Driver/Remote/DriverRemoteTraversal.cs | 10 +-
gremlin-dotnet/src/Gremlin.Net/Driver/ResultSet.cs | 121 +++-
.../Gremlin.Net/Driver/StreamingResponseContext.cs | 71 +++
gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 13 +-
.../Process/Traversal/DefaultTraversal.cs | 252 ++++----
.../Gremlin.Net/Process/Traversal/ITraversal.cs | 39 +-
gremlin-dotnet/src/Gremlin.Net/Process/Utils.cs | 21 +
.../GraphBinary4/GraphBinary4MessageSerializer.cs | 8 +-
...eMessageSerializer.cs => ResponseSerializer.cs} | 65 +-
.../Structure/IO/GraphBinary4/StreamExtensions.cs | 87 +--
.../IO/GraphBinary4/Types/SingleTypeSerializer.cs | 4 +-
.../MessageSerializerBenchmarks.cs | 29 +-
.../Driver/GremlinClientTests.cs | 30 +-
.../Driver/MessagesTests.cs | 12 +-
.../Gherkin/CommonSteps.cs | 54 +-
.../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs | 4 +-
.../Gremlin.Net.UnitTest/Driver/ConnectionTests.cs | 140 ++++-
.../Driver/DriverRemoteConnectionTests.cs | 5 +-
.../Gremlin.Net.UnitTest/Driver/ResultSetTests.cs | 328 ++++++++++
.../Process/Traversal/TestTraversal.cs | 19 +-
.../Process/Traversal/TestTraversalStrategy.cs | 4 +-
.../Process/Traversal/TraversalTests.cs | 141 ++++-
.../GraphBinary4MessageSerializerTests.cs | 8 +-
...rializerTests.cs => ResponseSerializerTests.cs} | 102 +++-
.../IO/GraphBinary4/StreamExtensionsTests.cs | 382 ++++++++++++
.../StreamingDeserializerRoundTripTests.cs | 669 +++++++++++++++++++++
33 files changed, 2456 insertions(+), 536 deletions(-)
delete mode 100644
gremlin-dotnet/src/Gremlin.Net/Driver/Messages/ResponseMessage.cs
create mode 100644
gremlin-dotnet/src/Gremlin.Net/Driver/StreamingResponseContext.cs
rename
gremlin-dotnet/src/Gremlin.Net/Structure/IO/GraphBinary4/{ResponseMessageSerializer.cs
=> ResponseSerializer.cs} (51%)
create mode 100644
gremlin-dotnet/test/Gremlin.Net.UnitTest/Driver/ResultSetTests.cs
rename
gremlin-dotnet/test/Gremlin.Net.UnitTest/Structure/IO/GraphBinary4/{ResponseMessageSerializerTests.cs
=> ResponseSerializerTests.cs} (71%)
create mode 100644
gremlin-dotnet/test/Gremlin.Net.UnitTest/Structure/IO/GraphBinary4/StreamExtensionsTests.cs
create mode 100644
gremlin-dotnet/test/Gremlin.Net.UnitTest/Structure/IO/GraphBinary4/StreamingDeserializerRoundTripTests.cs