FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sendgrid-java/src/main/java/com/sendgrid/APICallback.java at main · sendgrid/sendgrid-java · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
sendgrid
/
sendgrid-java
Public
Notifications
You must be signed in to change notification settings
Fork
404
Star
495
Code
Issues
22
Pull requests
9
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
sendgrid-java
/
src
/
main
/
java
/
com
/
sendgrid
/
APICallback.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (19 loc) · 445 Bytes
Breadcrumbs
sendgrid-java
/
src
/
main
/
java
/
com
/
sendgrid
/
APICallback.java
Copy path
File metadata and controls
22 lines (19 loc) · 445 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package
com
.
sendgrid
;
/**
* An interface describing a callback mechanism for the asynchronous, rate limit aware API
* connection.
*/
public
interface
APICallback
{
/**
* Callback method in case of an error.
*
* @param ex the error that was thrown.
*/
void
error
(
Exception
ex
);
/**
* Callback method in case of a valid response.
*
* @param response the valid response.
*/
void
response
(
Response
response
);
}
Back
|
FazBrowse Home
|
New Git URL