Gemfire JavaDocs
Package org.apache.geode.admin
Interface Alert
-
@Deprecated public interface Alert
Deprecated.as of 7.0 use themanagement
package insteadAn administration alert that is issued by a member of a GemFire distributed system. It is similar to a log message.- Since:
- GemFire 3.5
- See Also:
AlertListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getConnectionName()
Deprecated.The name of the distributed system) through which the alert was issued.java.util.Date
getDate()
Deprecated.The time at which the alert was issuedAlertLevel
getLevel()
Deprecated.The level at which this alert is issuedjava.lang.String
getMessage()
Deprecated.The alert's messagejava.lang.String
getSourceId()
Deprecated.The id of the source of the alert (such as a thread in a VM)SystemMember
getSystemMember()
Deprecated.The member of the distributed system that issued the alert, or null if the issuer is no longer a member of the distributed system.
-
-
-
Method Detail
-
getLevel
AlertLevel getLevel()
Deprecated.The level at which this alert is issued- Returns:
- the level at which this alert is issued
-
getSystemMember
SystemMember getSystemMember()
Deprecated.The member of the distributed system that issued the alert, or null if the issuer is no longer a member of the distributed system.- Returns:
- the member of the distributed system that issued the alert
-
getConnectionName
java.lang.String getConnectionName()
Deprecated.The name of the distributed system) through which the alert was issued.- Returns:
- the name of the distributed system) through which the alert was issued
-
getSourceId
java.lang.String getSourceId()
Deprecated.The id of the source of the alert (such as a thread in a VM)- Returns:
- the id of the source of the alert (such as a thread in a VM)
-
getMessage
java.lang.String getMessage()
Deprecated.The alert's message- Returns:
- the alert's message
-
getDate
java.util.Date getDate()
Deprecated.The time at which the alert was issued- Returns:
- the time at which the alert was issued
-
-