|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.jgroups.stack.Protocol org.jgroups.protocols.FC
public class FC
Simple flow control protocol based on a credit system. Each sender has a number of credits (bytes to send). When the credits have been exhausted, the sender blocks. Each receiver also keeps track of how many credits it has received from a sender. When credits for a sender fall below a threshold, the receiver sends more credits to the sender. Works for both unicast and multicast messages.
Note that this protocol must be located towards the top of the stack, or all down_threads from JChannel to this protocol must be set to false ! This is in order to block JChannel.send()/JChannel.down().
Field Summary |
---|
Fields inherited from class org.jgroups.stack.Protocol |
---|
down_prot, ergonomics, id, log, name, stack, stats, up_prot |
Constructor Summary | |
---|---|
FC()
|
Method Summary | |
---|---|
java.lang.Object |
down(Event evt)
An event is to be sent down the stack. |
java.util.Map<java.lang.String,java.lang.Object> |
dumpStats()
|
double |
getAverageTimeBlocked()
|
long |
getMaxBlockTime()
|
java.lang.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. |
java.lang.String |
printCreditors()
|
java.lang.String |
printCredits()
|
java.lang.String |
printReceiverCredits()
|
java.lang.String |
printSenderCredits()
|
void |
resetStats()
|
void |
setMaxBlockTime(long t)
|
void |
setMaxBlockTimes(java.lang.String str)
|
void |
setMaxCredits(long max_credits)
|
void |
setMinCredits(long min_credits)
|
void |
setMinThreshold(double min_threshold)
|
java.lang.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. |
java.lang.Object |
up(Event evt)
An event was received from the layer below. |
Methods inherited from class org.jgroups.stack.Protocol |
---|
destroy, enableStats, getConfigurableObjects, getDownProtocol, getDownServices, getId, getIdsAbove, getLevel, getName, getProtocolStack, getSocketFactory, getThreadFactory, getTransport, getUpProtocol, getUpServices, getValue, isErgonomics, printStats, providedDownServices, providedUpServices, requiredDownServices, requiredUpServices, resetStatistics, setDownProtocol, setErgonomics, setId, setLevel, setProtocolStack, setSocketFactory, setUpProtocol, setValue, setValues, statsEnabled |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public FC()
Method Detail |
---|
public void resetStats()
resetStats
in class Protocol
public 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(java.lang.String str)
public java.lang.String getMaxBlockTimes()
public long getTotalTimeBlocked()
public double getAverageTimeBlocked()
public int getNumberOfCreditRequestsReceived()
public int getNumberOfCreditRequestsSent()
public int getNumberOfCreditResponsesReceived()
public int getNumberOfCreditResponsesSent()
public java.lang.String printSenderCredits()
public java.lang.String printReceiverCredits()
public java.lang.String printCredits()
public java.lang.String printCreditors()
public java.util.Map<java.lang.String,java.lang.Object> dumpStats()
public java.lang.String showLastBlockingTimes()
public void unblock()
public void init() throws java.lang.Exception
Protocol
java.lang.Exception
- Thrown if protocol cannot be initialized successfully. This will cause the
ProtocolStack to fail, so the channel constructor will throw an exceptionpublic void start() throws java.lang.Exception
Protocol
Channel.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.
java.lang.Exception
- Thrown if protocol cannot be started successfully. This will cause the ProtocolStack
to fail, so Channel.connect(String)
will throw an exceptionpublic void stop()
Protocol
Channel.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 flushed
public java.lang.Object down(Event evt)
Protocol
down_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 java.lang.Object up(Event evt)
Protocol
down_prot.down()
or c) the event (or another event) is sent up
the stack using up_prot.up()
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |