|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use AlarmChannel | |
---|---|
com.solab.alarms | This package contains the main classes and interfaces for the library, as well as the main class, AlarmSender. |
com.solab.alarms.channels | This package contains concrete implementations for different AlarmChannels which do not have any external dependencies. |
com.solab.alarms.channels.twitter | This package contains the TwitterChannel component and the TwitterAuth program. |
Uses of AlarmChannel in com.solab.alarms |
---|
Classes in com.solab.alarms that implement AlarmChannel | |
---|---|
class |
AbstractAlarmChannel
An abstract implementation of AlarmChannel, to ease the creation of custom channels. |
Methods in com.solab.alarms with parameters of type AlarmChannel | |
---|---|
boolean |
DefaultAlarmCache.shouldResend(AlarmChannel channel,
String source,
String message)
|
boolean |
AlarmCache.shouldResend(AlarmChannel channel,
String source,
String message)
This method returns true if the specified message with optional source has not been sent through the specified channel very recently (meaning the resend interval for the channel has elapsed). |
void |
DefaultAlarmCache.store(AlarmChannel channel,
String source,
String message)
|
void |
AlarmCache.store(AlarmChannel channel,
String source,
String message)
Stores the current date for the specified message and optional source, for the given channel. |
Method parameters in com.solab.alarms with type arguments of type AlarmChannel | |
---|---|
void |
AlarmSender.setAlarmChannels(List<AlarmChannel> channels)
Sets the alarm channels to be used for sending alarm messages. |
Uses of AlarmChannel in com.solab.alarms.channels |
---|
Classes in com.solab.alarms.channels that implement AlarmChannel | |
---|---|
class |
CommandLineChannel
This alarm channel executes a command-line program, either passing the alarm message as a parameter to it as an argument of ${alarm}, or feeding the alarm message to its STDIN. |
class |
HttpChannel
This channel can send an alarm over an HTTP GET or POST request. |
class |
TestChannel
A very simple alarm channel that only prints the alarm messages to STDOUT. |
Uses of AlarmChannel in com.solab.alarms.channels.twitter |
---|
Classes in com.solab.alarms.channels.twitter that implement AlarmChannel | |
---|---|
class |
TwitterChannel
A channel that uses Twitter to publish alarms. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |