390391392393394395396397398399400
while (keys.hasNext() && !matched) { AMQShortString rkey = (AMQShortString) keys.next(); if (rkey.endsWith("*")) { matched = routingKey.startsWith(rkey.subSequence(0, rkey.length() - 1).toString()); } else { matched = routingKey.equals(rkey); }
588589590591592593594595596597598
{ AMQShortString rkey = (AMQShortString) keys.next(); if (rkey.endsWith("*")) { matched = publishRKey.startsWith(rkey.subSequence(0, rkey.length() - 1)); } else { matched = publishRKey.equals(rkey); }
532533534535536537538539540541542
662663664665666667668669670671672
514515516517518519520521522523524
648649650651652653654655656657658
359360361362363364365366367368369
555556557558559560561562563564565