Skip to content

Commit

Permalink
[Java] Update Javadoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeb01 committed Aug 28, 2024
1 parent 66d79e8 commit 0ace362
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 3 additions & 0 deletions aeron-agent/src/main/java/io/aeron/agent/DriverEventCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,9 @@ public enum DriverEventCode implements EventCode
RESEND(55,
(code, buffer, offset, builder) -> DriverEventDissector.dissectResend(buffer, offset, builder)),

/**
* Reject image command received by the driver.
*/
CMD_IN_REJECT_IMAGE(56, DriverEventDissector::dissectCommand);

static final int EVENT_CODE_TYPE = EventCodeType.DRIVER.getTypeCode();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,10 @@
*/
public interface PublicationErrorFrameHandler
{
PublicationErrorFrameHandler NO_OP = new PublicationErrorFrameHandler()
{
public void onPublicationError(final PublicationErrorFrame errorFrame)
{
}
};
/**
* Default no-op error frame handler.
*/
PublicationErrorFrameHandler NO_OP = errorFrame -> {};

/**
* Called when an error frame for a publication is received by the local driver and needs to be propagated to the
Expand Down

0 comments on commit 0ace362

Please sign in to comment.