Interface FriendshipService


public interface FriendshipService
  • Method Details

    • getFriendship

      reactor.core.publisher.Mono<@NotNull Friendship> getFriendship(UUID uuid1, UUID uuid2)
    • getFriendships

      reactor.core.publisher.Flux<@NotNull Friendship> getFriendships(UUID playerId)
    • saveFriendship

      reactor.core.publisher.Mono<@NotNull Boolean> saveFriendship(Friendship playerIds)
    • deleteFriendship

      reactor.core.publisher.Mono<@NotNull Boolean> deleteFriendship(UUID uuid1, UUID uuid2)
      Returns:
      True if friendship deleted, false if none found