Package fr.fuzeblocks.homeplugin.rtp
Interface RtpRequestStore
- All Known Implementing Classes:
- LocalRtpRequestStore,- RedisRtpRequestStore
public interface RtpRequestStore
The interface Rtp request store.
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddRtpRequest(UUID playerId, Long timestamp) Add rtp request.Gets all rtp requests.getRtpRequest(UUID playerId) Gets rtp request.booleanhasRtpRequest(UUID playerId) Has rtp request boolean.voidremoveRtpRequest(UUID playerId) Remove rtp request.
- 
Method Details- 
addRtpRequestAdd rtp request.- Parameters:
- playerId- the player id
- timestamp- the timestamp
 
- 
getRtpRequestGets rtp request.- Parameters:
- playerId- the player id
- Returns:
- the rtp request
 
- 
removeRtpRequestRemove rtp request.- Parameters:
- playerId- the player id
 
- 
hasRtpRequestHas rtp request boolean.- Parameters:
- playerId- the player id
- Returns:
- the boolean
 
- 
getAllRtpRequestsGets all rtp requests.- Returns:
- the all rtp requests
 
 
-