コード例 #1
0
 public String getInputChannelName() {
   if (isTap()) {
     return String.format(
         "%s.%s.%s", BusUtils.constructTapPrefix(tap.getGroup()), tap.getName(), tap.getIndex());
   }
   return (inputChannelName != null)
       ? inputChannelName
       : BusUtils.constructPipeName(group, index > 0 ? index - 1 : index);
 }
コード例 #2
0
 public String getOutputChannelName() {
   return (outputChannelName != null)
       ? outputChannelName
       : BusUtils.constructPipeName(group, index);
 }