Package org.infinispan.remoting.transport.jgroups

Examples of org.infinispan.remoting.transport.jgroups.JGroupsAddress.writeExternal()


    */
   private static final long serialVersionUID = 2400716389425727329L;

   public void writeExternal(Object subject, ObjectOutput output) throws IOException {
      JGroupsAddress address = (JGroupsAddress) subject;
      address.writeExternal(output);
   }

   public Object createExternal(Class<?> subjectType, ObjectInput input, Creator defaultCreator)
         throws IOException, ClassNotFoundException {
      return new JGroupsAddress();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.