| Package | Description |
|---|---|
| com.sk89q.squirrelid | |
| com.sk89q.squirrelid.cache | |
| com.sk89q.squirrelid.resolver |
| Modifier and Type | Method and Description |
|---|---|
Profile |
Profile.setName(String name)
Create a copy of this profile but with a new name.
|
Profile |
Profile.setUniqueId(UUID uniqueId)
Create a copy of this profile but with a new UUID.
|
| Modifier and Type | Method and Description |
|---|---|
Profile |
ProfileCache.getIfPresent(UUID uuid)
Query the cache for the name for a given UUID.
|
| Modifier and Type | Method and Description |
|---|---|
protected com.google.common.collect.ImmutableMap<UUID,Profile> |
SQLiteCache.executeGet(Iterable<UUID> uuids) |
com.google.common.collect.ImmutableMap<UUID,Profile> |
HashMapCache.getAllPresent(Iterable<UUID> uuids) |
com.google.common.collect.ImmutableMap<UUID,Profile> |
ProfileCache.getAllPresent(Iterable<UUID> ids)
Query the cache for the names of the given UUIDs.
|
com.google.common.collect.ImmutableMap<UUID,Profile> |
SQLiteCache.getAllPresent(Iterable<UUID> uuids) |
| Modifier and Type | Method and Description |
|---|---|
void |
ProfileCache.put(Profile profile)
Store the given name as the last known name for the given UUID.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
SQLiteCache.executePut(Iterable<Profile> profiles) |
void |
HashMapCache.putAll(Iterable<Profile> profiles) |
void |
ProfileCache.putAll(Iterable<Profile> profiles)
Store a list of zero or more names.
|
void |
SQLiteCache.putAll(Iterable<Profile> entries) |
| Modifier and Type | Method and Description |
|---|---|
Profile |
HashMapService.findByName(String name) |
Profile |
CacheForwardingService.findByName(String name) |
Profile |
ParallelProfileService.findByName(String name) |
Profile |
BukkitPlayerService.findByName(String name) |
Profile |
CombinedProfileService.findByName(String name) |
Profile |
HttpRepositoryService.findByName(String name) |
Profile |
ProfileService.findByName(String name)
Query the profile server for the UUID of a name.
|
| Modifier and Type | Method and Description |
|---|---|
com.google.common.collect.ImmutableList<Profile> |
CacheForwardingService.findAllByName(Iterable<String> names) |
com.google.common.collect.ImmutableList<Profile> |
ParallelProfileService.findAllByName(Iterable<String> names) |
com.google.common.collect.ImmutableList<Profile> |
CombinedProfileService.findAllByName(Iterable<String> names) |
com.google.common.collect.ImmutableList<Profile> |
HttpRepositoryService.findAllByName(Iterable<String> names) |
com.google.common.collect.ImmutableList<Profile> |
ProfileService.findAllByName(Iterable<String> names)
Query the profile server for UUIDs for the given names.
|
protected com.google.common.collect.ImmutableList<Profile> |
HttpRepositoryService.query(Iterable<String> names)
Perform a query for profiles without partitioning the queries.
|
| Modifier and Type | Method and Description |
|---|---|
void |
HashMapService.put(Profile profile)
Add the given profile to the internal map.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CacheForwardingService.findAllByName(Iterable<String> names,
com.google.common.base.Predicate<Profile> consumer) |
void |
ParallelProfileService.findAllByName(Iterable<String> names,
com.google.common.base.Predicate<Profile> consumer) |
void |
CombinedProfileService.findAllByName(Iterable<String> names,
com.google.common.base.Predicate<Profile> consumer) |
void |
HttpRepositoryService.findAllByName(Iterable<String> names,
com.google.common.base.Predicate<Profile> consumer) |
void |
ProfileService.findAllByName(Iterable<String> names,
com.google.common.base.Predicate<Profile> consumer)
Query the profile server for UUIDs for the given names.
|
void |
HashMapService.putAll(Collection<Profile> profiles)
Add the given profiles to the internal map.
|
Copyright © 2014. All Rights Reserved.