long
130131132133134135136137138139140
out.open(); // Save entry head out.writeLong(STORAGE_VERSION); // write the entry file version out.writeLong(_minScn); out.writeLong(_maxScn); out.writeInt(size()); // Save entry body saveDataSection(out);
137138139140141142143144145146147
// Save entry body saveDataSection(out); // Save entry tail. out.writeLong(_minScn); out.writeLong(_maxScn); } finally { out.close(); }
138139140141142143144145146147148
// Save entry body saveDataSection(out); // Save entry tail. out.writeLong(_minScn); out.writeLong(_maxScn); } finally { out.close(); } if(_log.isInfoEnabled()) {
128129130131132133134135136137138
try { out.open(); // Save entry head out.writeLong(STORAGE_VERSION); // write the entry file version out.writeLong(_minScn); out.writeLong(_maxScn); out.writeInt(size()); // Save entry body
129130131132133134135136137138139
try { out.open(); // Save entry head out.writeLong(STORAGE_VERSION); // write the entry file version out.writeLong(_minScn); out.writeLong(_maxScn); out.writeInt(size()); // Save entry body saveDataSection(out);