- All Known Implementing Classes:
IntList
,RoutineDescriptor
public interface IntConsumer
IntConsumer
is a callback interface. Its instances
receive values of type int
by invocation of their
consume(int)
method.
This interface is primarily intended for
the declaration of generator methods of the XL programming language
with return type int
. Such methods have an additional
parameter of type IntConsumer
to which they send the
generated values.
However, this interface may also be used for similar purposes where
a callback instance is needed as a receiver of values of type
int
.
- Author:
- Ole Kniemeyer
-
Method Summary
-
Method Details
-
consume
void consume(int value) Receives a value of typeint
.
-