https://github.com/electroid/gamelift-sdk-java
Java port of the server and client-side Amazon GameLift SDK
https://github.com/electroid/gamelift-sdk-java
aws gamelift java
Last synced: 2 months ago
JSON representation
Java port of the server and client-side Amazon GameLift SDK
- Host: GitHub
- URL: https://github.com/electroid/gamelift-sdk-java
- Owner: Electroid
- License: apache-2.0
- Created: 2020-03-17T00:55:00.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-23T08:54:51.000Z (almost 2 years ago)
- Last Synced: 2025-01-31T18:12:06.970Z (3 months ago)
- Topics: aws, gamelift, java
- Language: Java
- Homepage:
- Size: 33.1 MB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gamelift-sdk-java
Java port of the server and client-side Amazon GameLift SDK.### Installation
```xml
ashcon-repo
https://repo.ashcon.app/content/repositories/releases
```
```xml
app.ashcon.gamelift
gamelift-sdk
3.4.0.3
```
### Usage
API design is derivied from the [GameLift C# SDK](https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-sdk-server-api.html), which is maintained by Amazon.
```java
// Client side: sends requests to AWS for game and player sessions
AmazonGameLiftClientBuilder.defaultClient().createGameSession( ... );// Server side: responds to AWS events and actually hosts games
AmazonGameLiftServer.get().initSdk();
```### Example
An [example](example/src/main/java/app/ashcon/gamelift/GameLiftPlugin.java) integration between GameLift and Minecraft is also provided.