Tabnine Logo
MapMakerInternalMap$SerializationProxy
Code IndexAdd Tabnine to your IDE (free)

How to use
MapMakerInternalMap$SerializationProxy
in
com.google.common.collect

Best Java code snippets using com.google.common.collect.MapMakerInternalMap$SerializationProxy (Showing top 20 results out of 315)

origin: wildfly/wildfly

private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
 in.defaultReadObject();
 MapMaker mapMaker = readMapMaker(in);
 delegate = mapMaker.makeMap();
 readEntries(in);
}
origin: wildfly/wildfly

private void writeObject(ObjectOutputStream out) throws IOException {
 out.defaultWriteObject();
 writeMapTo(out);
}
origin: Nextdoor/bender

private void writeObject(ObjectOutputStream out) throws IOException {
 out.defaultWriteObject();
 writeMapTo(out);
}
origin: org.jboss.eap/wildfly-client-all

private void writeObject(ObjectOutputStream out) throws IOException {
 out.defaultWriteObject();
 writeMapTo(out);
}
origin: org.hudsonci.lib.guava/guava

private void writeObject(ObjectOutputStream out) throws IOException {
 out.defaultWriteObject();
 writeMapTo(out);
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

private void writeObject(ObjectOutputStream out) throws IOException {
 out.defaultWriteObject();
 writeMapTo(out);
}
origin: com.ning.billing/killbill-osgi-bundles-analytics

private void writeObject(ObjectOutputStream out) throws IOException {
 out.defaultWriteObject();
 writeMapTo(out);
}
origin: com.diffplug.guava/guava-collect

private void writeObject(ObjectOutputStream out) throws IOException {
  out.defaultWriteObject();
  writeMapTo(out);
}
origin: at.bestsolution.efxclipse.eclipse/com.google.guava

private void writeObject(ObjectOutputStream out) throws IOException {
 out.defaultWriteObject();
 writeMapTo(out);
}
origin: com.diffplug.guava/guava-collect

Object writeReplace() {
  return new SerializationProxy<K, V>(
      keyStrength,
      valueStrength,
      keyEquivalence,
      valueEquivalence,
      expireAfterWriteNanos,
      expireAfterAccessNanos,
      maximumSize,
      concurrencyLevel,
      removalListener,
      this);
}
origin: com.google.guava/guava-jdk5

private void writeObject(ObjectOutputStream out) throws IOException {
 out.defaultWriteObject();
 writeMapTo(out);
}
origin: org.sonatype.sisu/sisu-guava

private void writeObject(ObjectOutputStream out) throws IOException {
 out.defaultWriteObject();
 writeMapTo(out);
}
origin: Nextdoor/bender

Object writeReplace() {
 return new SerializationProxy<K, V>(keyStrength, valueStrength, keyEquivalence,
   valueEquivalence, expireAfterWriteNanos, expireAfterAccessNanos, maximumSize,
   concurrencyLevel, removalListener, this);
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

Object writeReplace() {
 return new SerializationProxy<>(
   entryHelper.keyStrength(),
   entryHelper.valueStrength(),
   keyEquivalence,
   entryHelper.valueStrength().defaultEquivalence(),
   concurrencyLevel,
   this);
}
origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

Object writeReplace() {
 return new SerializationProxy<K, V>(keyStrength, valueStrength, keyEquivalence,
   valueEquivalence, expireAfterWriteNanos, expireAfterAccessNanos, maximumSize,
   concurrencyLevel, removalListener, this);
}
origin: com.ning.billing/killbill-osgi-bundles-jruby

Object writeReplace() {
 return new SerializationProxy<K, V>(keyStrength, valueStrength, keyEquivalence,
   valueEquivalence, expireAfterWriteNanos, expireAfterAccessNanos, maximumSize,
   concurrencyLevel, removalListener, this);
}
origin: org.hudsonci.lib.guava/guava

Object writeReplace() {
 return new SerializationProxy<K, V>(keyStrength, valueStrength, keyEquivalence,
   valueEquivalence, expireAfterWriteNanos, expireAfterAccessNanos, maximumSize,
   concurrencyLevel, removalListener, this);
}
origin: com.ning.billing/killbill-osgi-bundles-analytics

Object writeReplace() {
 return new SerializationProxy<K, V>(keyStrength, valueStrength, keyEquivalence,
   valueEquivalence, expireAfterWriteNanos, expireAfterAccessNanos, maximumSize,
   concurrencyLevel, removalListener, this);
}
origin: com.google.guava/guava-jdk5

Object writeReplace() {
 return new SerializationProxy<K, V>(keyStrength, valueStrength, keyEquivalence,
   valueEquivalence, expireAfterWriteNanos, expireAfterAccessNanos, maximumSize,
   concurrencyLevel, removalListener, this);
}
origin: org.sonatype.sisu/sisu-guava

Object writeReplace() {
 return new SerializationProxy<K, V>(keyStrength, valueStrength, keyEquivalence,
   valueEquivalence, expireAfterWriteNanos, expireAfterAccessNanos, maximumSize,
   concurrencyLevel, removalListener, this);
}
com.google.common.collectMapMakerInternalMap$SerializationProxy

Javadoc

The actual object that gets serialized. Unfortunately, readResolve() doesn't get called when a circular dependency is present, so the proxy must be able to behave as the map itself.

Most used methods

  • <init>
  • readEntries
  • readMapMaker
  • writeMapTo

Popular in Java

  • Reading from database using SQL prepared statement
  • setScale (BigDecimal)
  • getExternalFilesDir (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Reference (javax.naming)
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now