@@ -494,7 +494,10 @@ public int read(ByteBuffer buf) throws IOException {
494
494
}
495
495
long start = SocketReadEvent .timestamp ();
496
496
int nbytes = implRead (buf );
497
- SocketReadEvent .offer (start , nbytes , remoteAddress (), 0 );
497
+ long duration = SocketReadEvent .timestamp () - start ;
498
+ if (SocketReadEvent .shouldCommit (duration )) {
499
+ SocketReadEvent .emit (start , duration , nbytes , remoteAddress (), 0 );
500
+ }
498
501
return nbytes ;
499
502
}
500
503
@@ -508,7 +511,10 @@ public long read(ByteBuffer[] dsts, int offset, int length)
508
511
}
509
512
long start = SocketReadEvent .timestamp ();
510
513
long nbytes = implRead (dsts , offset , length );
511
- SocketReadEvent .offer (start , nbytes , remoteAddress (), 0 );
514
+ long duration = SocketReadEvent .timestamp () - start ;
515
+ if (SocketReadEvent .shouldCommit (duration )) {
516
+ SocketReadEvent .emit (start , duration , nbytes , remoteAddress (), 0 );
517
+ }
512
518
return nbytes ;
513
519
}
514
520
@@ -619,7 +625,10 @@ public int write(ByteBuffer buf) throws IOException {
619
625
}
620
626
long start = SocketWriteEvent .timestamp ();
621
627
int nbytes = implWrite (buf );
622
- SocketWriteEvent .offer (start , nbytes , remoteAddress ());
628
+ long duration = SocketWriteEvent .timestamp () - start ;
629
+ if (SocketWriteEvent .shouldCommit (duration )) {
630
+ SocketWriteEvent .emit (start , duration , nbytes , remoteAddress ());
631
+ }
623
632
return nbytes ;
624
633
}
625
634
@@ -632,7 +641,10 @@ public long write(ByteBuffer[] srcs, int offset, int length)
632
641
}
633
642
long start = SocketWriteEvent .timestamp ();
634
643
long nbytes = implWrite (srcs , offset , length );
635
- SocketWriteEvent .offer (start , nbytes , remoteAddress ());
644
+ long duration = SocketWriteEvent .timestamp () - start ;
645
+ if (SocketWriteEvent .shouldCommit (duration )) {
646
+ SocketWriteEvent .emit (start , duration , nbytes , remoteAddress ());
647
+ }
636
648
return nbytes ;
637
649
}
638
650
0 commit comments