Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/main/java/org/spongepowered/api/user/UserManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import java.util.Collection;
import java.util.Optional;
import java.util.UUID;
import java.util.stream.Stream;

/**
* Stores the persistent {@link User} data of a {@link Player}.
Expand Down Expand Up @@ -92,6 +93,17 @@ public interface UserManager {
*/
Collection<GameProfile> getAll();

/**
* Gets a stream of all {@link GameProfile}s with stored {@link User}
* data.
*
* <p>Use {@link #get(GameProfile)} to get the {@link User} data
* corresponding to a {@link GameProfile}.</p>
*
* @return A {@link Stream} of {@link GameProfile}s
*/
Stream<GameProfile> streamAll();

/**
* Deletes the data associated with a {@link User}.
*
Expand Down