Package | Description |
---|---|
tap | |
tap.config | |
tap.data | |
tap.upload |
Modifier and Type | Method and Description |
---|---|
ServiceConnection.LimitUnit[] |
ServiceConnection.getOutputLimitType()
[OPTIONAL]
|
ServiceConnection.LimitUnit[] |
ServiceConnection.getUploadLimitType()
[OPTIONAL]
|
static ServiceConnection.LimitUnit |
ServiceConnection.LimitUnit.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceConnection.LimitUnit[] |
ServiceConnection.LimitUnit.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static int |
ServiceConnection.LimitUnit.compare(int leftLimit,
ServiceConnection.LimitUnit leftUnit,
int rightLimit,
ServiceConnection.LimitUnit rightUnit)
Compares the 2 given values (each one expressed in the given unit).
|
static int |
ServiceConnection.LimitUnit.compare(long leftLimit,
ServiceConnection.LimitUnit leftUnit,
long rightLimit,
ServiceConnection.LimitUnit rightUnit)
Compares the 2 given values (each one expressed in the given unit).
|
boolean |
ServiceConnection.LimitUnit.isCompatibleWith(ServiceConnection.LimitUnit anotherUnit)
Tells whether the given unit has the same type (bytes or rows).
|
Modifier and Type | Method and Description |
---|---|
ServiceConnection.LimitUnit[] |
ConfigurableServiceConnection.getOutputLimitType() |
ServiceConnection.LimitUnit[] |
ConfigurableServiceConnection.getUploadLimitType() |
Modifier and Type | Method and Description |
---|---|
void |
ConfigurableServiceConnection.setUploadLimitType(ServiceConnection.LimitUnit type)
Set the unit of the upload limit.
|
Constructor and Description |
---|
LimitedTableIterator(java.lang.Class<T> classIt,
java.io.InputStream input,
ServiceConnection.LimitUnit type,
int limit)
Build the specified
TableIterator instance and wrap it so that limiting the number of rows OR bytes to read. |
Modifier and Type | Field and Description |
---|---|
protected ServiceConnection.LimitUnit |
Uploader.limitUnit
Type of limit to set: ROWS or BYTES.
|