All Downloads are FREE. Search and download functionalities are using the official Maven repository.

as.leap.vertx.rpc.impl.SharedWrapper Maven / Gradle / Ivy

There is a newer version: 3.3.8
Show newest version
package as.leap.vertx.rpc.impl;

import io.vertx.core.shareddata.Shareable;

/**
 * Created by stream.
 */
class SharedWrapper implements Shareable {
  private T value;

  public SharedWrapper(T value) {
    this.value = value;
  }

  public T getValue() {
    return value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy