Gemfire JavaDocs_test
Interface ClientMembershipEvent
-
public interface ClientMembershipEvent
An event delivered to aClientMembershipListener
when this process detects connection changes to ClientServers or clients.- Since:
- GemFire 8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DistributedMember
getMember()
Returns the member that connected or disconnected.java.lang.String
getMemberId()
Returns the id of the member that connected or disconnected.boolean
isClient()
Returns true if the member is a client to a CacheServer hosted by this process.
-
-
-
Method Detail
-
getMember
DistributedMember getMember()
Returns the member that connected or disconnected.- Returns:
- the member that connected or disconnected
- See Also:
DistributedSystem.getDistributedMember()
-
getMemberId
java.lang.String getMemberId()
Returns the id of the member that connected or disconnected.- Returns:
- the id of the member that connected or disconnected
- See Also:
DistributedMember.getId()
-
isClient
boolean isClient()
Returns true if the member is a client to a CacheServer hosted by this process. Returns false if the member is a peer that this process is connected to.- Returns:
- whether the member is a client to a CacheServer hosted by this process
-
-