mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-18 09:35:50 +00:00
Change to callback method
This commit is contained in:
parent
8552d0674f
commit
fd735e248f
2 changed files with 7 additions and 2 deletions
|
|
@ -9,7 +9,7 @@ var Gamedig = require('gamedig');
|
|||
Gamedig.query({
|
||||
type: 'minecraft',
|
||||
host: 'mc.example.com',
|
||||
success: function(state) {
|
||||
callback: function(state) {
|
||||
if(state.error) console.log("Server is offline");
|
||||
else console.log(state);
|
||||
}
|
||||
|
|
@ -18,6 +18,9 @@ Gamedig.query({
|
|||
|
||||
State Object
|
||||
---
|
||||
The callback function is "guaranteed" to be called exactly once, indicating either a query error or timeout
|
||||
(in the state's error key), or with a state object containg the successful results.
|
||||
|
||||
The returned state object may contain some or all of the following keys, depending on
|
||||
what is available from the queried server:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue