Tabnine Logo
InternalDistributedMember.fromData
Code IndexAdd Tabnine to your IDE (free)

How to use
fromData
method
in
com.gemstone.gemfire.distributed.internal.membership.InternalDistributedMember

Best Java code snippets using com.gemstone.gemfire.distributed.internal.membership.InternalDistributedMember.fromData (Showing top 6 results out of 315)

origin: io.snappydata/snappydata-store-core

@Override
public void fromData(DataInput in)
  throws IOException, ClassNotFoundException {
 super.fromData(in);
 int opOrdinal = DataSerializer.readPrimitiveByte(in);
 this.configOp = Operation.values[opOrdinal];
 this.opArg = DataSerializer.readObject(in);
 int numMembers = InternalDataSerializer.readArrayLength(in);
 if (numMembers > 0) {
  this.members = new HashSet<>(numMembers);
  for (int count = 1; count <= numMembers; ++count) {
   final InternalDistributedMember member = new InternalDistributedMember();
   member.fromData(in);
   this.members.add(member);
  }
  this.serializeMembers = true;
 }
 else {
  this.members = null;
  this.serializeMembers = false;
 }
}
origin: io.snappydata/gemfirexd

@Override
public void fromData(DataInput in)
  throws IOException, ClassNotFoundException {
 super.fromData(in);
 int opOrdinal = DataSerializer.readPrimitiveByte(in);
 this.configOp = Operation.values[opOrdinal];
 this.opArg = DataSerializer.readObject(in);
 int numMembers = InternalDataSerializer.readArrayLength(in);
 if (numMembers > 0) {
  this.members = new HashSet<DistributedMember>(numMembers);
  for (int count = 1; count <= numMembers; ++count) {
   final InternalDistributedMember member = new InternalDistributedMember();
   member.fromData(in);
   this.members.add(member);
  }
  this.serializeMembers = true;
 }
 else {
  this.members = null;
  this.serializeMembers = false;
 }
}
origin: io.snappydata/gemfirexd-core

 @Override
 public void fromData(DataInput in) throws IOException,
     ClassNotFoundException {
  super.fromData(in);
  this.ownerMember = new InternalDistributedMember();
  this.ownerMember.fromData(in);
  this.ownerThreadId = InternalDataSerializer.readSignedVL(in);
  this.ownerThreadName = DataSerializer.readString(in);
 }
}
origin: io.snappydata/snappydata-store-core

 @Override
 public void fromData(DataInput in) throws IOException,
     ClassNotFoundException {
  super.fromData(in);
  this.ownerMember = new InternalDistributedMember();
  this.ownerMember.fromData(in);
  this.ownerThreadId = InternalDataSerializer.readSignedVL(in);
  this.ownerThreadName = DataSerializer.readString(in);
 }
}
origin: io.snappydata/gemfirexd

 @Override
 public void fromData(DataInput in) throws IOException,
     ClassNotFoundException {
  super.fromData(in);
  this.ownerMember = new InternalDistributedMember();
  this.ownerMember.fromData(in);
  this.ownerThreadId = InternalDataSerializer.readSignedVL(in);
  this.ownerThreadName = DataSerializer.readString(in);
 }
}
origin: io.snappydata/gemfirexd-core

@Override
public void fromData(DataInput in)
  throws IOException, ClassNotFoundException {
 super.fromData(in);
 int opOrdinal = DataSerializer.readPrimitiveByte(in);
 this.configOp = Operation.values[opOrdinal];
 this.opArg = DataSerializer.readObject(in);
 int numMembers = InternalDataSerializer.readArrayLength(in);
 if (numMembers > 0) {
  this.members = new HashSet<DistributedMember>(numMembers);
  for (int count = 1; count <= numMembers; ++count) {
   final InternalDistributedMember member = new InternalDistributedMember();
   member.fromData(in);
   this.members.add(member);
  }
  this.serializeMembers = true;
 }
 else {
  this.members = null;
  this.serializeMembers = false;
 }
}
com.gemstone.gemfire.distributed.internal.membershipInternalDistributedMemberfromData

Popular methods of InternalDistributedMember

  • <init>
    Construct a InternalDistributedMember. All fields are specified. This, and the following constructor
  • equals
  • toString
  • getHost
  • getId
  • getName
    Returns the name of this member's distributed system connection or null if no name was specified.
  • getPort
    Return the underlying port (membership port)
  • getRoles
    Returns an unmodifiable Set of this member's Roles.
  • getVmKind
    [GemStone] Returns the kind of VM that hosts the distribution manager with this address.
  • hashCode
  • getIpAddress
    Return the underlying host address
  • getProcessId
  • getIpAddress,
  • getProcessId,
  • getVersionObject,
  • getDirectChannelPort,
  • getGroups,
  • getNetMember,
  • getVmViewId,
  • toData,
  • _readEssentialData

Popular in Java

  • Making http requests using okhttp
  • getApplicationContext (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • setContentView (Activity)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • Path (java.nio.file)
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • 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