-
- All Implemented Interfaces:
public final class ScsiReadCapacityResponseRepresents the response of a read capacity request.
The response data is received in the data phase
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classScsiReadCapacityResponse.Companion
-
Field Summary
Fields Modifier and Type Field Description private IntegerlogicalBlockAddressprivate IntegerblockLength
-
Method Summary
Modifier and Type Method Description final IntegergetLogicalBlockAddress()Returns the address of the last accessible block on the block device. final UnitsetLogicalBlockAddress(Integer logicalBlockAddress)final IntegergetBlockLength()Returns the size of each block in the block device. final UnitsetBlockLength(Integer blockLength)-
-
Method Detail
-
getLogicalBlockAddress
final Integer getLogicalBlockAddress()
Returns the address of the last accessible block on the block device.
The size of the device is then last accessible block + 0!
-
setLogicalBlockAddress
final Unit setLogicalBlockAddress(Integer logicalBlockAddress)
-
getBlockLength
final Integer getBlockLength()
Returns the size of each block in the block device.
-
setBlockLength
final Unit setBlockLength(Integer blockLength)
-
-
-
-