red-arrow-flight 13.0.0 → 14.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/arrow-flight/loader.rb +1 -0
- data/lib/arrow-flight/server-call-context.rb +31 -0
- data/lib/arrow-flight/version.rb +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c8dee664c5fbe5085376ba3f44b616c6b29b7baa49bf32da228207816fdc01dc
|
4
|
+
data.tar.gz: 4df74901437203ef9c51d077b2ff2ac453ee8006bd45f06cef2de5fbbf0f9c73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6f4d71b2ff4749a1013fc7e9f992adf4b7b893cf41ebab0c6a664c9ee982f87a7dda0f0a01bab14feb14d388a6e1a95a63a8d7e743fd7f86bac288fe4e5e097
|
7
|
+
data.tar.gz: 417e7448e194e7ec972e60e33a67e45d8b4012ebce159aea09a6465f88528216ece1f4a6fba5eaeccb6f2a91d523a1ae3cd4a8bd6c9be5f3ca355b76ebfea939
|
data/lib/arrow-flight/loader.rb
CHANGED
@@ -34,6 +34,7 @@ module ArrowFlight
|
|
34
34
|
require "arrow-flight/client-options"
|
35
35
|
require "arrow-flight/location"
|
36
36
|
require "arrow-flight/record-batch-reader"
|
37
|
+
require "arrow-flight/server-call-context"
|
37
38
|
require "arrow-flight/server-options"
|
38
39
|
require "arrow-flight/ticket"
|
39
40
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
2
|
+
# or more contributor license agreements. See the NOTICE file
|
3
|
+
# distributed with this work for additional information
|
4
|
+
# regarding copyright ownership. The ASF licenses this file
|
5
|
+
# to you under the Apache License, Version 2.0 (the
|
6
|
+
# "License"); you may not use this file except in compliance
|
7
|
+
# with the License. You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
module ArrowFlight
|
19
|
+
class ServerCallContext
|
20
|
+
def each_incoming_header
|
21
|
+
return to_enum(__method__) unless block_given?
|
22
|
+
foreach_incoming_header do |key, value|
|
23
|
+
yield(key, value)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def incoming_headers
|
28
|
+
each_incoming_header.to_a
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
data/lib/arrow-flight/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: red-arrow-flight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 14.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Apache Arrow Developers
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08
|
11
|
+
date: 2023-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: red-arrow
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 14.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 14.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,6 +88,7 @@ files:
|
|
88
88
|
- lib/arrow-flight/loader.rb
|
89
89
|
- lib/arrow-flight/location.rb
|
90
90
|
- lib/arrow-flight/record-batch-reader.rb
|
91
|
+
- lib/arrow-flight/server-call-context.rb
|
91
92
|
- lib/arrow-flight/server-options.rb
|
92
93
|
- lib/arrow-flight/ticket.rb
|
93
94
|
- lib/arrow-flight/version.rb
|
@@ -105,7 +106,7 @@ homepage: https://arrow.apache.org/
|
|
105
106
|
licenses:
|
106
107
|
- Apache-2.0
|
107
108
|
metadata: {}
|
108
|
-
post_install_message:
|
109
|
+
post_install_message:
|
109
110
|
rdoc_options: []
|
110
111
|
require_paths:
|
111
112
|
- lib
|
@@ -120,8 +121,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
121
|
- !ruby/object:Gem::Version
|
121
122
|
version: '0'
|
122
123
|
requirements: []
|
123
|
-
rubygems_version: 3.
|
124
|
-
signing_key:
|
124
|
+
rubygems_version: 3.5.0.dev
|
125
|
+
signing_key:
|
125
126
|
specification_version: 4
|
126
127
|
summary: Red Arrow Flight is the Ruby bindings of Apache Arrow Flight
|
127
128
|
test_files:
|