R - the result typepublic abstract class AbstractIntAcceptor<R> extends BaseAbstractAcceptor<R> implements IntAcceptor<R>
IntAcceptor.| Constructor and Description |
|---|
AbstractIntAcceptor() |
| Modifier and Type | Method and Description |
|---|---|
void |
accept(int... values)
Accept a sequence of
int values, supplied as vararg parameters. |
void |
accept(int value)
Accept an
int. |
abstract void |
acceptInt(int value)
Accept an
int, after closed check and test for end of data. |
close, isClosedclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitaccept, accept, accept, accept, accept, accept, accept, accept, acceptflush, getResult, isClosed, isComplete, safeClosecloseandThenpublic void accept(int value)
int. Check for acceptor already closed, and handle end of data.accept in interface IntAcceptor<R>accept in interface IntConsumervalue - the input valuepublic abstract void acceptInt(int value)
int, after closed check and test for end of data. Implementing classes must supply an
implementation of this method.value - the input valuepublic void accept(int... values)
int values, supplied as vararg parameters.values - the input valuesCopyright © 2025. All rights reserved.