blob: 3c948ad37cd6f06a258c6891190b1018a47ede37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2001-2002
* Sleepycat Software. All rights reserved.
*
* $Id: DbMultipleDataIterator.java,v 1.5 2002/01/11 15:52:38 bostic Exp $
*/
package com.sleepycat.db;
/**
*
* @author David M. Krinsky
*/
public class DbMultipleDataIterator extends DbMultipleIterator
{
// public methods
public DbMultipleDataIterator(Dbt data)
{
super(data);
}
public boolean next(Dbt data)
{
int dataoff = DbUtil.array2int(buf, pos);
// crack out the data offset and length.
if (dataoff < 0) {
return (false);
}
pos -= int32sz;
int datasz = DbUtil.array2int(buf, pos);
pos -= int32sz;
data.set_data(buf);
data.set_size(datasz);
data.set_offset(dataoff);
return (true);
}
}
// end of DbMultipleDataIterator.java
|