mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 23:10:16 +01:00
Add Offline PDC API
This commit is contained in:
parent
11f0f5a80a
commit
6dfba7e0c7
1 changed files with 17 additions and 1 deletions
|
@ -19,7 +19,7 @@ import org.jetbrains.annotations.Nullable;
|
||||||
* player that is stored on the disk and can, thus, be retrieved without the
|
* player that is stored on the disk and can, thus, be retrieved without the
|
||||||
* player needing to be online.
|
* player needing to be online.
|
||||||
*/
|
*/
|
||||||
public interface OfflinePlayer extends ServerOperator, AnimalTamer, ConfigurationSerializable {
|
public interface OfflinePlayer extends ServerOperator, AnimalTamer, ConfigurationSerializable, io.papermc.paper.persistence.PersistentDataViewHolder { // Paper - Add Offline PDC API
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if this player is currently online
|
* Checks if this player is currently online
|
||||||
|
@ -557,4 +557,20 @@ public interface OfflinePlayer extends ServerOperator, AnimalTamer, Configuratio
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
public Location getLocation();
|
public Location getLocation();
|
||||||
|
// Paper start - add pdc to offline player
|
||||||
|
/**
|
||||||
|
* Yields a view of the persistent data container for this offline player.
|
||||||
|
* In case this {@link OfflinePlayer} instance was created for an offline player, the returned view will wrap the persistent
|
||||||
|
* data on disk.
|
||||||
|
* <p>
|
||||||
|
* As such, this method as well as queries to the {@link io.papermc.paper.persistence.PersistentDataContainerView}
|
||||||
|
* may produce blocking IO requests to read the requested data from disk.
|
||||||
|
* Caution in its usage is hence advised.
|
||||||
|
*
|
||||||
|
* @return the persistent data container view
|
||||||
|
* @see io.papermc.paper.persistence.PersistentDataViewHolder#getPersistentDataContainer()
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
io.papermc.paper.persistence.@NotNull PersistentDataContainerView getPersistentDataContainer();
|
||||||
|
// Paper end - add pdc to offline player
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue