public class FC extends Protocol
| Constructor and Description |
|---|
FC() |
| Modifier and Type | Method and Description |
|---|---|
Object |
down(Event evt)
An event is to be sent down the stack.
|
Map<String,Object> |
dumpStats() |
double |
getAverageTimeBlocked() |
long |
getMaxBlockTime() |
String |
getMaxBlockTimes() |
long |
getMaxCredits() |
long |
getMinCredits() |
double |
getMinThreshold() |
int |
getNumberOfBlockings() |
int |
getNumberOfCreditRequestsReceived() |
int |
getNumberOfCreditRequestsSent() |
int |
getNumberOfCreditResponsesReceived() |
int |
getNumberOfCreditResponsesSent() |
long |
getTotalTimeBlocked() |
void |
init()
Called after instance has been created (null constructor) and before protocol is started.
|
String |
printCreditors() |
String |
printCredits() |
String |
printReceiverCredits() |
String |
printSenderCredits() |
void |
resetStats() |
void |
setMaxBlockTime(long t) |
void |
setMaxBlockTimes(String str) |
void |
setMaxCredits(long max_credits) |
void |
setMinCredits(long min_credits) |
void |
setMinThreshold(double min_threshold) |
String |
showLastBlockingTimes() |
void |
start()
This method is called on a
Channel.connect(String). |
void |
stop()
This method is called on a
Channel.disconnect(). |
void |
unblock()
Allows to unblock a blocked sender from an external program, e.g.
|
Object |
up(Event evt)
An event was received from the layer below.
|
destroy, enableStats, getConfigurableObjects, getDownProtocol, getId, getLevel, getName, getProtocolStack, getSocketFactory, getThreadFactory, getTransport, getUpProtocol, getValue, isErgonomics, printStats, providedDownServices, providedUpServices, requiredDownServices, requiredUpServices, resetStatistics, setDownProtocol, setErgonomics, setId, setLevel, setProtocolStack, setSocketFactory, setUpProtocol, setValue, setValues, statsEnabledpublic void resetStats()
resetStats in class Protocolpublic long getMaxCredits()
public void setMaxCredits(long max_credits)
public double getMinThreshold()
public void setMinThreshold(double min_threshold)
public long getMinCredits()
public void setMinCredits(long min_credits)
public int getNumberOfBlockings()
public long getMaxBlockTime()
public void setMaxBlockTime(long t)
public void setMaxBlockTimes(String str)
public String getMaxBlockTimes()
public long getTotalTimeBlocked()
public double getAverageTimeBlocked()
public int getNumberOfCreditRequestsReceived()
public int getNumberOfCreditRequestsSent()
public int getNumberOfCreditResponsesReceived()
public int getNumberOfCreditResponsesSent()
public String printSenderCredits()
public String printReceiverCredits()
public String printCredits()
public String printCreditors()
public String showLastBlockingTimes()
public void unblock()
public void init()
throws Exception
Protocolpublic void start()
throws Exception
ProtocolChannel.connect(String). Starts work.
Protocols are connected and queues are ready to receive events.
Will be called from bottom to top. This call will replace
the START and START_OK events.start in class ProtocolException - Thrown if protocol cannot be started successfully. This will cause the ProtocolStack
to fail, so Channel.connect(String) will throw an exceptionpublic void stop()
ProtocolChannel.disconnect(). Stops work (e.g. by closing multicast socket).
Will be called from top to bottom. This means that at the time of the method invocation the
neighbor protocol below is still working. This method will replace the
STOP, STOP_OK, CLEANUP and CLEANUP_OK events. The ProtocolStack guarantees that
when this method is called all messages in the down queue will have been flushedpublic Object down(Event evt)
Protocoldown_prot.down(). In case of a GET_ADDRESS event (which tries to
retrieve the stack's address from one of the bottom layers), the layer may need to send
a new response event back up the stack using up_prot.up().public Object up(Event evt)
Protocoldown_prot.down() or c) the event (or another event) is sent up
the stack using up_prot.up().Copyright © 2012 JBoss by Red Hat. All Rights Reserved.