List of usage examples for java.io ObjectOutputStream writeLong
public void writeLong(long val) throws IOException
From source file:pt.webdetails.cda.cache.monitor.ExtraCacheInfo.java
private void writeObject(ObjectOutputStream out) throws IOException { out.writeObject(cdaSettingsId);// ww w . j a v a2 s.com out.writeObject(dataAccessId); out.writeLong(queryDurationMs); out.writeInt(nbrRows); out.writeLong(entryTime); out.writeInt(timeToLive); out.writeObject(tableSnapshot != null ? tableSnapshot.toString() : null); }