ACP API

net.juniper.smgt.acp.application
Interface CongestionPointListener


public interface CongestionPointListener

Instances of this interface can be registered to received notifications when a specific congestion point changes or goes down.

See Also:
CongestionPoint.addListener(CongestionPointListener)

Method Summary
 void congestionPointDown()
          This method is invoked after congestion point goes down.
 void congestionPointUpdate(CongestionPoint cp)
          This method is invoked after congestion point is updated.
 

Method Detail

congestionPointDown

void congestionPointDown()
This method is invoked after congestion point goes down.


congestionPointUpdate

void congestionPointUpdate(CongestionPoint cp)
This method is invoked after congestion point is updated.

Parameters:
cp - The update congestion point.

ACP API