-
Notifications
You must be signed in to change notification settings - Fork 85
test: got the client_integration_test moved over to the builder. #2362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
6f366fe
423cef8
fdd18e1
92a4998
a30ccf9
d74ca58
44f44f3
67a8ff4
e50d045
c50b8a6
fe3e208
aa3133c
34d6dbf
d9d93fa
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,7 @@ class Stream { | |
| Stream(envoy_engine_t engine_handle, envoy_stream_t handle); | ||
|
|
||
| Stream& sendHeaders(RequestHeadersSharedPtr headers, bool end_stream); | ||
| Stream& sendData(envoy_data data); | ||
| Stream& sendData(envoy_data data, bool end_stream); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IIRC the reason I think we can reconsider whether that design actually makes sense here, but for now it's probably worth keeping the iOS/Android/C++ interfaces in alignment.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. but doesn't sendHeaders with end stream implicitly close? That's a pretty weird abstraction IMO but yeah this PR is not the place to change it. |
||
| void close(RequestTrailersSharedPtr trailers); | ||
| void close(envoy_data data); | ||
| void cancel(); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I'd call this
set, for alignment with the other builders: https://github.com/envoyproxy/envoy-mobile/blob/main/library/kotlin/io/envoyproxy/envoymobile/RequestHeadersBuilder.kt#L43