MCPcopy Create free account
hub / github.com/belaban/JGroups / getBottomProtocol

Method getBottomProtocol

src/org/jgroups/stack/ProtocolStack.java:697–702  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

695 }
696
697 public <T extends Protocol> T getBottomProtocol() {
698 T curr_prot=(T)this;
699 while(curr_prot != null && curr_prot.getDownProtocol() !=null)
700 curr_prot=curr_prot.getDownProtocol();
701 return curr_prot;
702 }
703
704 public Protocol getTopProtocol() {
705 return top_prot;

Callers 3

getTransportMethod · 0.95
setupMethod · 0.95
initMethod · 0.95

Calls 1

getDownProtocolMethod · 0.80

Tested by

no test coverage detected