forked from discord-jda/JDA
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3eaf94
commit 4235406
Showing
7 changed files
with
840 additions
and
5 deletions.
There are no files selected for viewing
646 changes: 646 additions & 0 deletions
646
src/examples/java/SessionCheckpointAndGatewayResumeExample.kt
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
103 changes: 103 additions & 0 deletions
103
src/main/java/net/dv8tion/jda/api/events/PreProcessedRawGatewayEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/* | ||
* Copyright 2015 Austin Keener, Michael Ritter, Florian Spieß, and the JDA contributors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package net.dv8tion.jda.api.events; | ||
|
||
import net.dv8tion.jda.api.JDA; | ||
import net.dv8tion.jda.api.utils.data.DataObject; | ||
|
||
import javax.annotation.Nonnull; | ||
|
||
/** | ||
* Wrapper for the raw event received from discord. | ||
* <br>This provides the raw structure of a gateway event through a {@link DataObject} | ||
* instance containing: | ||
* <ul> | ||
* <li>d: The payload of the package (DataObject)</li> | ||
* <li>t: The type of the package (String)</li> | ||
* <li>op: The opcode of the package, always 0 for dispatch (int)</li> | ||
* <li>s: The sequence number, equivalent to {@link #getResponseNumber()} (long)</li> | ||
* </ul> | ||
* | ||
* <p>Sent after derived events. This is disabled by default and can be enabled through either | ||
* the {@link net.dv8tion.jda.api.JDABuilder#setRawEventsEnabled(boolean) JDABuilder} | ||
* or {@link net.dv8tion.jda.api.sharding.DefaultShardManagerBuilder#setRawEventsEnabled(boolean) DefaultShardManagerBuilder}. | ||
* | ||
* @see net.dv8tion.jda.api.JDABuilder#setRawEventsEnabled(boolean) JDABuilder.setRawEventsEnabled(boolean) | ||
* @see net.dv8tion.jda.api.sharding.DefaultShardManagerBuilder#setRawEventsEnabled(boolean) DefaultShardManagerBuilder.setRawEventsEnabled(boolean) | ||
* @see <a href="https://discord.com/developers/docs/topics/gateway" target="_blank">Gateway Documentation</a> | ||
*/ | ||
public class PreProcessedRawGatewayEvent extends Event | ||
{ | ||
private final DataObject data; | ||
private boolean isCancelled = false; | ||
|
||
public PreProcessedRawGatewayEvent(@Nonnull JDA api, long responseNumber, @Nonnull DataObject data) | ||
{ | ||
super(api, responseNumber); | ||
this.data = data; | ||
} | ||
|
||
/** | ||
* The raw gateway package including sequence and type. | ||
* | ||
* <ul> | ||
* <li>d: The payload of the package (DataObject)</li> | ||
* <li>t: The type of the package (String)</li> | ||
* <li>op: The opcode of the package, always 0 for dispatch (int)</li> | ||
* <li>s: The sequence number, equivalent to {@link #getResponseNumber()} (long)</li> | ||
* </ul> | ||
* | ||
* @return The data object | ||
*/ | ||
@Nonnull | ||
public DataObject getPackage() | ||
{ | ||
return data; | ||
} | ||
|
||
/** | ||
* The payload of the package. | ||
* | ||
* @return The payload as a {@link DataObject} instance | ||
*/ | ||
@Nonnull | ||
public DataObject getPayload() | ||
{ | ||
return data.getObject("d"); | ||
} | ||
|
||
/** | ||
* The type of event. | ||
* | ||
* @return The type of event. | ||
*/ | ||
@Nonnull | ||
public String getType() | ||
{ | ||
return data.getString("t"); | ||
} | ||
|
||
public void setCancelled(boolean cancelled) | ||
{ | ||
isCancelled = cancelled; | ||
} | ||
|
||
public boolean isCancelled() | ||
{ | ||
return isCancelled; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters