You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -584,7 +586,9 @@ If `conn_manual_window_management` is false, this call will have no effect. The
584
586
585
587
If you are not connected, this call will have no effect.
586
588
587
-
Crashes when the connection is not http2 connection. The limit of the Maximum Size is 2**31 - 1. If the increment size cause the connection flow window exceeds the Maximum size, this call will result in the connection lost.
589
+
Crashes when the connection is not http2 connection. The limit of the Maximum Size is 2**31 - 1. And client will make sure the WINDOW\\_UPDATE frame to be valid.
590
+
591
+
The client control exactly when the WINDOW\\_UPDATE frame sent. Check `conn_window_size_threshold_to_send_update` for details.
union (unnamed at /home/runner/.julia/artifacts/0dcbf6df3f3caedaddc5b6babfde533b9631ca87/include/aws/http/proxy.h:302:5)
1206
+
union (unnamed at /home/runner/.julia/artifacts/0a9f325bb7385a853365ca0bbfb154614c702981/include/aws/http/proxy.h:302:5)
1202
1207
1203
1208
Documentation not found.
1204
1209
"""
1205
-
structvar"union (unnamed at /home/runner/.julia/artifacts/0dcbf6df3f3caedaddc5b6babfde533b9631ca87/include/aws/http/proxy.h:302:5)"
1210
+
structvar"union (unnamed at /home/runner/.julia/artifacts/0a9f325bb7385a853365ca0bbfb154614c702981/include/aws/http/proxy.h:302:5)"
1206
1211
data::NTuple{8, UInt8}
1207
1212
end
1208
1213
1209
-
function Base.getproperty(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/0dcbf6df3f3caedaddc5b6babfde533b9631ca87/include/aws/http/proxy.h:302:5)"}, f::Symbol)
1214
+
function Base.getproperty(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/0a9f325bb7385a853365ca0bbfb154614c702981/include/aws/http/proxy.h:302:5)"}, f::Symbol)
1210
1215
f ===:forwarding_vtable&&returnPtr{Ptr{aws_http_proxy_negotiator_forwarding_vtable}}(x +0)
1211
1216
f ===:tunnelling_vtable&&returnPtr{Ptr{aws_http_proxy_negotiator_tunnelling_vtable}}(x +0)
1212
1217
returngetfield(x, f)
1213
1218
end
1214
1219
1215
-
function Base.getproperty(x::var"union (unnamed at /home/runner/.julia/artifacts/0dcbf6df3f3caedaddc5b6babfde533b9631ca87/include/aws/http/proxy.h:302:5)", f::Symbol)
1216
-
r =Ref{var"union (unnamed at /home/runner/.julia/artifacts/0dcbf6df3f3caedaddc5b6babfde533b9631ca87/include/aws/http/proxy.h:302:5)"}(x)
1217
-
ptr = Base.unsafe_convert(Ptr{var"union (unnamed at /home/runner/.julia/artifacts/0dcbf6df3f3caedaddc5b6babfde533b9631ca87/include/aws/http/proxy.h:302:5)"}, r)
1220
+
function Base.getproperty(x::var"union (unnamed at /home/runner/.julia/artifacts/0a9f325bb7385a853365ca0bbfb154614c702981/include/aws/http/proxy.h:302:5)", f::Symbol)
1221
+
r =Ref{var"union (unnamed at /home/runner/.julia/artifacts/0a9f325bb7385a853365ca0bbfb154614c702981/include/aws/http/proxy.h:302:5)"}(x)
1222
+
ptr = Base.unsafe_convert(Ptr{var"union (unnamed at /home/runner/.julia/artifacts/0a9f325bb7385a853365ca0bbfb154614c702981/include/aws/http/proxy.h:302:5)"}, r)
1218
1223
fptr =getproperty(ptr, f)
1219
1224
GC.@preserve r unsafe_load(fptr)
1220
1225
end
1221
1226
1222
-
function Base.setproperty!(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/0dcbf6df3f3caedaddc5b6babfde533b9631ca87/include/aws/http/proxy.h:302:5)"}, f::Symbol, v)
1227
+
function Base.setproperty!(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/0a9f325bb7385a853365ca0bbfb154614c702981/include/aws/http/proxy.h:302:5)"}, f::Symbol, v)
1223
1228
unsafe_store!(getproperty(x, f), v)
1224
1229
end
1225
1230
@@ -1235,7 +1240,7 @@ end
1235
1240
function Base.getproperty(x::Ptr{aws_http_proxy_negotiator}, f::Symbol)
1236
1241
f ===:ref_count&&returnPtr{aws_ref_count}(x +0)
1237
1242
f ===:impl&&returnPtr{Ptr{Cvoid}}(x +24)
1238
-
f ===:strategy_vtable&&returnPtr{var"union (unnamed at /home/runner/.julia/artifacts/0dcbf6df3f3caedaddc5b6babfde533b9631ca87/include/aws/http/proxy.h:302:5)"}(x +32)
1243
+
f ===:strategy_vtable&&returnPtr{var"union (unnamed at /home/runner/.julia/artifacts/0a9f325bb7385a853365ca0bbfb154614c702981/include/aws/http/proxy.h:302:5)"}(x +32)
1239
1244
returngetfield(x, f)
1240
1245
end
1241
1246
@@ -2941,6 +2946,8 @@ If the connection was created with `manual_window_management` set true, the flow
2941
2946
2942
2947
If `manual_window_management` is false, this call will have no effect. The connection maintains its flow-control windows such that no back-pressure is applied and data arrives as fast as possible.
2943
2948
2949
+
For HTTP/2, the client control exactly when the WINDOW\\_UPDATE frame sent. And client will make sure the WINDOW\\_UPDATE frame to be valid. Check `stream_window_size_threshold_to_send_update` for details.
@@ -584,7 +586,9 @@ If `conn_manual_window_management` is false, this call will have no effect. The
584
586
585
587
If you are not connected, this call will have no effect.
586
588
587
-
Crashes when the connection is not http2 connection. The limit of the Maximum Size is 2**31 - 1. If the increment size cause the connection flow window exceeds the Maximum size, this call will result in the connection lost.
589
+
Crashes when the connection is not http2 connection. The limit of the Maximum Size is 2**31 - 1. And client will make sure the WINDOW\\_UPDATE frame to be valid.
590
+
591
+
The client control exactly when the WINDOW\\_UPDATE frame sent. Check `conn_window_size_threshold_to_send_update` for details.
union (unnamed at /home/runner/.julia/artifacts/8cb5b99a1d1e52a9a0e431915199b52f680336d0/include/aws/http/proxy.h:302:5)
1206
+
union (unnamed at /home/runner/.julia/artifacts/7fb02f8455840f59ecec47ebdfbbdb29308f4801/include/aws/http/proxy.h:302:5)
1202
1207
1203
1208
Documentation not found.
1204
1209
"""
1205
-
structvar"union (unnamed at /home/runner/.julia/artifacts/8cb5b99a1d1e52a9a0e431915199b52f680336d0/include/aws/http/proxy.h:302:5)"
1210
+
structvar"union (unnamed at /home/runner/.julia/artifacts/7fb02f8455840f59ecec47ebdfbbdb29308f4801/include/aws/http/proxy.h:302:5)"
1206
1211
data::NTuple{8, UInt8}
1207
1212
end
1208
1213
1209
-
function Base.getproperty(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/8cb5b99a1d1e52a9a0e431915199b52f680336d0/include/aws/http/proxy.h:302:5)"}, f::Symbol)
1214
+
function Base.getproperty(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/7fb02f8455840f59ecec47ebdfbbdb29308f4801/include/aws/http/proxy.h:302:5)"}, f::Symbol)
1210
1215
f ===:forwarding_vtable&&returnPtr{Ptr{aws_http_proxy_negotiator_forwarding_vtable}}(x +0)
1211
1216
f ===:tunnelling_vtable&&returnPtr{Ptr{aws_http_proxy_negotiator_tunnelling_vtable}}(x +0)
1212
1217
returngetfield(x, f)
1213
1218
end
1214
1219
1215
-
function Base.getproperty(x::var"union (unnamed at /home/runner/.julia/artifacts/8cb5b99a1d1e52a9a0e431915199b52f680336d0/include/aws/http/proxy.h:302:5)", f::Symbol)
1216
-
r =Ref{var"union (unnamed at /home/runner/.julia/artifacts/8cb5b99a1d1e52a9a0e431915199b52f680336d0/include/aws/http/proxy.h:302:5)"}(x)
1217
-
ptr = Base.unsafe_convert(Ptr{var"union (unnamed at /home/runner/.julia/artifacts/8cb5b99a1d1e52a9a0e431915199b52f680336d0/include/aws/http/proxy.h:302:5)"}, r)
1220
+
function Base.getproperty(x::var"union (unnamed at /home/runner/.julia/artifacts/7fb02f8455840f59ecec47ebdfbbdb29308f4801/include/aws/http/proxy.h:302:5)", f::Symbol)
1221
+
r =Ref{var"union (unnamed at /home/runner/.julia/artifacts/7fb02f8455840f59ecec47ebdfbbdb29308f4801/include/aws/http/proxy.h:302:5)"}(x)
1222
+
ptr = Base.unsafe_convert(Ptr{var"union (unnamed at /home/runner/.julia/artifacts/7fb02f8455840f59ecec47ebdfbbdb29308f4801/include/aws/http/proxy.h:302:5)"}, r)
1218
1223
fptr =getproperty(ptr, f)
1219
1224
GC.@preserve r unsafe_load(fptr)
1220
1225
end
1221
1226
1222
-
function Base.setproperty!(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/8cb5b99a1d1e52a9a0e431915199b52f680336d0/include/aws/http/proxy.h:302:5)"}, f::Symbol, v)
1227
+
function Base.setproperty!(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/7fb02f8455840f59ecec47ebdfbbdb29308f4801/include/aws/http/proxy.h:302:5)"}, f::Symbol, v)
1223
1228
unsafe_store!(getproperty(x, f), v)
1224
1229
end
1225
1230
@@ -1235,7 +1240,7 @@ end
1235
1240
function Base.getproperty(x::Ptr{aws_http_proxy_negotiator}, f::Symbol)
1236
1241
f ===:ref_count&&returnPtr{aws_ref_count}(x +0)
1237
1242
f ===:impl&&returnPtr{Ptr{Cvoid}}(x +24)
1238
-
f ===:strategy_vtable&&returnPtr{var"union (unnamed at /home/runner/.julia/artifacts/8cb5b99a1d1e52a9a0e431915199b52f680336d0/include/aws/http/proxy.h:302:5)"}(x +32)
1243
+
f ===:strategy_vtable&&returnPtr{var"union (unnamed at /home/runner/.julia/artifacts/7fb02f8455840f59ecec47ebdfbbdb29308f4801/include/aws/http/proxy.h:302:5)"}(x +32)
1239
1244
returngetfield(x, f)
1240
1245
end
1241
1246
@@ -2941,6 +2946,8 @@ If the connection was created with `manual_window_management` set true, the flow
2941
2946
2942
2947
If `manual_window_management` is false, this call will have no effect. The connection maintains its flow-control windows such that no back-pressure is applied and data arrives as fast as possible.
2943
2948
2949
+
For HTTP/2, the client control exactly when the WINDOW\\_UPDATE frame sent. And client will make sure the WINDOW\\_UPDATE frame to be valid. Check `stream_window_size_threshold_to_send_update` for details.
@@ -584,7 +586,9 @@ If `conn_manual_window_management` is false, this call will have no effect. The
584
586
585
587
If you are not connected, this call will have no effect.
586
588
587
-
Crashes when the connection is not http2 connection. The limit of the Maximum Size is 2**31 - 1. If the increment size cause the connection flow window exceeds the Maximum size, this call will result in the connection lost.
589
+
Crashes when the connection is not http2 connection. The limit of the Maximum Size is 2**31 - 1. And client will make sure the WINDOW\\_UPDATE frame to be valid.
590
+
591
+
The client control exactly when the WINDOW\\_UPDATE frame sent. Check `conn_window_size_threshold_to_send_update` for details.
union (unnamed at /home/runner/.julia/artifacts/e8bfc179990302d61713ac41f40f4d3cca4f9865/include/aws/http/proxy.h:302:5)
1206
+
union (unnamed at /home/runner/.julia/artifacts/13089f5158c2a073c2b7a53e2d5efc08c77137c7/include/aws/http/proxy.h:302:5)
1202
1207
1203
1208
Documentation not found.
1204
1209
"""
1205
-
structvar"union (unnamed at /home/runner/.julia/artifacts/e8bfc179990302d61713ac41f40f4d3cca4f9865/include/aws/http/proxy.h:302:5)"
1210
+
structvar"union (unnamed at /home/runner/.julia/artifacts/13089f5158c2a073c2b7a53e2d5efc08c77137c7/include/aws/http/proxy.h:302:5)"
1206
1211
data::NTuple{8, UInt8}
1207
1212
end
1208
1213
1209
-
function Base.getproperty(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/e8bfc179990302d61713ac41f40f4d3cca4f9865/include/aws/http/proxy.h:302:5)"}, f::Symbol)
1214
+
function Base.getproperty(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/13089f5158c2a073c2b7a53e2d5efc08c77137c7/include/aws/http/proxy.h:302:5)"}, f::Symbol)
1210
1215
f ===:forwarding_vtable&&returnPtr{Ptr{aws_http_proxy_negotiator_forwarding_vtable}}(x +0)
1211
1216
f ===:tunnelling_vtable&&returnPtr{Ptr{aws_http_proxy_negotiator_tunnelling_vtable}}(x +0)
1212
1217
returngetfield(x, f)
1213
1218
end
1214
1219
1215
-
function Base.getproperty(x::var"union (unnamed at /home/runner/.julia/artifacts/e8bfc179990302d61713ac41f40f4d3cca4f9865/include/aws/http/proxy.h:302:5)", f::Symbol)
1216
-
r =Ref{var"union (unnamed at /home/runner/.julia/artifacts/e8bfc179990302d61713ac41f40f4d3cca4f9865/include/aws/http/proxy.h:302:5)"}(x)
1217
-
ptr = Base.unsafe_convert(Ptr{var"union (unnamed at /home/runner/.julia/artifacts/e8bfc179990302d61713ac41f40f4d3cca4f9865/include/aws/http/proxy.h:302:5)"}, r)
1220
+
function Base.getproperty(x::var"union (unnamed at /home/runner/.julia/artifacts/13089f5158c2a073c2b7a53e2d5efc08c77137c7/include/aws/http/proxy.h:302:5)", f::Symbol)
1221
+
r =Ref{var"union (unnamed at /home/runner/.julia/artifacts/13089f5158c2a073c2b7a53e2d5efc08c77137c7/include/aws/http/proxy.h:302:5)"}(x)
1222
+
ptr = Base.unsafe_convert(Ptr{var"union (unnamed at /home/runner/.julia/artifacts/13089f5158c2a073c2b7a53e2d5efc08c77137c7/include/aws/http/proxy.h:302:5)"}, r)
1218
1223
fptr =getproperty(ptr, f)
1219
1224
GC.@preserve r unsafe_load(fptr)
1220
1225
end
1221
1226
1222
-
function Base.setproperty!(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/e8bfc179990302d61713ac41f40f4d3cca4f9865/include/aws/http/proxy.h:302:5)"}, f::Symbol, v)
1227
+
function Base.setproperty!(x::Ptr{var"union (unnamed at /home/runner/.julia/artifacts/13089f5158c2a073c2b7a53e2d5efc08c77137c7/include/aws/http/proxy.h:302:5)"}, f::Symbol, v)
1223
1228
unsafe_store!(getproperty(x, f), v)
1224
1229
end
1225
1230
@@ -1235,7 +1240,7 @@ end
1235
1240
function Base.getproperty(x::Ptr{aws_http_proxy_negotiator}, f::Symbol)
1236
1241
f ===:ref_count&&returnPtr{aws_ref_count}(x +0)
1237
1242
f ===:impl&&returnPtr{Ptr{Cvoid}}(x +24)
1238
-
f ===:strategy_vtable&&returnPtr{var"union (unnamed at /home/runner/.julia/artifacts/e8bfc179990302d61713ac41f40f4d3cca4f9865/include/aws/http/proxy.h:302:5)"}(x +32)
1243
+
f ===:strategy_vtable&&returnPtr{var"union (unnamed at /home/runner/.julia/artifacts/13089f5158c2a073c2b7a53e2d5efc08c77137c7/include/aws/http/proxy.h:302:5)"}(x +32)
1239
1244
returngetfield(x, f)
1240
1245
end
1241
1246
@@ -2941,6 +2946,8 @@ If the connection was created with `manual_window_management` set true, the flow
2941
2946
2942
2947
If `manual_window_management` is false, this call will have no effect. The connection maintains its flow-control windows such that no back-pressure is applied and data arrives as fast as possible.
2943
2948
2949
+
For HTTP/2, the client control exactly when the WINDOW\\_UPDATE frame sent. And client will make sure the WINDOW\\_UPDATE frame to be valid. Check `stream_window_size_threshold_to_send_update` for details.
0 commit comments