Skip to content

Commit

Permalink
binder: add the missing flush argument to classes that override Serve…
Browse files Browse the repository at this point in the history
…rStream.
  • Loading branch information
amirhadadi authored and ejona86 committed Jun 28, 2022
1 parent 99c8a9a commit a7e262e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void request(int numMessages) {
}

@Override
public void writeHeaders(Metadata headers) {
public void writeHeaders(Metadata headers, boolean flush) {
try {
synchronized (outbound) {
outbound.sendHeaders(headers);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void request(int numMessages) {
}

@Override
public void writeHeaders(Metadata headers) {
public void writeHeaders(Metadata headers, boolean flush) {
pendingHeaders = headers;
}

Expand Down

0 comments on commit a7e262e

Please sign in to comment.