Skip to content

Instantly share code, notes, and snippets.

@TaylanUB
Last active April 4, 2019 15:40
Show Gist options
  • Save TaylanUB/02c44e1f11ae194747d4f52467f54402 to your computer and use it in GitHub Desktop.
Save TaylanUB/02c44e1f11ae194747d4f52467f54402 to your computer and use it in GitHub Desktop.
public static AsyncHandle<List<Item>> getMTPNItems(
SQL.ResultHandler<List<Item>> resultHandler,
SQL.ExceptionHandler exceptionHandler
) {
return query(
"select * from cwms_mtpnItems",
null,
resultSet -> makeObjectList(resultSet, DB::makeItem),
resultHandler,
exceptionHandler
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment