Skip to content

Instantly share code, notes, and snippets.

@okram
Created September 11, 2012 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save okram/3701067 to your computer and use it in GitHub Desktop.
Save okram/3701067 to your computer and use it in GitHub Desktop.
@Override
public boolean nextKeyValue() throws IOException, InterruptedException {
boolean isNext;
try {
this.vertex.readFields(this.rexsterInputStream);
this.value.enablePath(this.pathEnabled);
itemsIterated++;
isNext = true;
} catch (Exception e) {
isNext = false;
}
return isNext;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment