Returns a reference to {@code this} so multiple operations can be appended together.
197198199200201202203204205206207
appendString( msg, (String)groups.elementAt( i ), c2b); appendString( msg, instanceId, c2b); } // number of channels for this instance msg.appendInt( channelCnt ); // The body: appendString(msg, "channel.socket:" + host + ":" + port, c2b ); msg.appendInt( 1 ); appendString(msg, "tomcatId", c2b);
201202203204205206207208209210211
// number of channels for this instance msg.appendInt( channelCnt ); // The body: appendString(msg, "channel.socket:" + host + ":" + port, c2b ); msg.appendInt( 1 ); appendString(msg, "tomcatId", c2b); appendString(msg, instanceId, c2b); if( unixDomain != null ) { appendString(msg, "channel.apr:" + unixDomain, c2b );
207208209210211212213214215216217
appendString(msg, "tomcatId", c2b); appendString(msg, instanceId, c2b); if( unixDomain != null ) { appendString(msg, "channel.apr:" + unixDomain, c2b ); msg.appendInt(1); appendString(msg, "tomcatId", c2b); appendString(msg, instanceId, c2b); } if (log.isDebugEnabled())
230231232233234235236237238239240
msg.appendByte( SHM_WRITE_SLOT ); appendString( msg, slotName, c2b ); // number of channels for this instance msg.appendInt( 0 ); msg.appendInt( 0 ); if (log.isDebugEnabled()) log.debug("UnRegister " + slotName ); this.invoke( msg, mCtx );
231232233234235236237238239240241
msg.appendByte( SHM_WRITE_SLOT ); appendString( msg, slotName, c2b ); // number of channels for this instance msg.appendInt( 0 ); msg.appendInt( 0 ); if (log.isDebugEnabled()) log.debug("UnRegister " + slotName ); this.invoke( msg, mCtx ); }
190191192193194195196197198199200
int channelCnt=1; if( unixDomain != null ) channelCnt++; // number of groups. 0 means the default lb. msg.appendInt( groups.size() ); for( int i=0; i<groups.size(); i++ ) { appendString( msg, (String)groups.elementAt( i ), c2b); appendString( msg, instanceId, c2b); }