This is an automated email from the ASF dual-hosted git repository.

ijuma pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 8d2e157b379 MINOR: Fix docs to state that sendfile implemented in 
`TransferableRecords` instead of `MessageSet` (#13109)
8d2e157b379 is described below

commit 8d2e157b37902055bd5a8f4bd0f6ac29080910eb
Author: drgnchan <40224023+drgnc...@users.noreply.github.com>
AuthorDate: Sun Jan 15 15:06:18 2023 +0800

    MINOR: Fix docs to state that sendfile implemented in `TransferableRecords` 
instead of `MessageSet` (#13109)
    
    Reviewers: Ismael Juma <ism...@juma.me.uk>
---
 docs/implementation.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/implementation.html b/docs/implementation.html
index 11cf365750b..878868544f9 100644
--- a/docs/implementation.html
+++ b/docs/implementation.html
@@ -18,7 +18,7 @@
 <script id="implementation-template" type="text/x-handlebars-template">
     <h3 class="anchor-heading"><a id="networklayer" class="anchor-link"></a><a 
href="#networklayer">5.1 Network Layer</a></h3>
     <p>
-    The network layer is a fairly straight-forward NIO server, and will not be 
described in great detail. The sendfile implementation is done by giving the 
<code>MessageSet</code> interface a <code>writeTo</code> method. This allows 
the file-backed message set to use the more efficient <code>transferTo</code> 
implementation instead of an in-process buffered write. The threading model is 
a single acceptor thread and <i>N</i> processor threads which handle a fixed 
number of connections eac [...]
+    The network layer is a fairly straight-forward NIO server, and will not be 
described in great detail. The sendfile implementation is done by giving the 
<code>TransferableRecords</code> interface a <code>writeTo</code> method. This 
allows the file-backed message set to use the more efficient 
<code>transferTo</code> implementation instead of an in-process buffered write. 
The threading model is a single acceptor thread and <i>N</i> processor threads 
which handle a fixed number of connec [...]
     </p>
     <h3 class="anchor-heading"><a id="messages" class="anchor-link"></a><a 
href="#messages">5.2 Messages</a></h3>
     <p>

Reply via email to