Skip to content

Instantly share code, notes, and snippets.

@mtbarr
Created April 24, 2025 04:28
Show Gist options
  • Select an option

  • Save mtbarr/e69ac8d129a8eb3fc077ffe0de3bfb4c to your computer and use it in GitHub Desktop.

Select an option

Save mtbarr/e69ac8d129a8eb3fc077ffe0de3bfb4c to your computer and use it in GitHub Desktop.

Kotlin Code:

suspend fun fetchForUserStatus(uniqueId: UUID): UserStatus? { 
  return repository.findOne(uniqueId);
}

Java Code:

public CompletableFuture<@Nullable UserStautus> fetchForUserStatus(UUID uniqueId) { 
  return repository.findOne(uniqueId);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment