diff options
| author | Adelyn Breedlove <[email protected]> | 2019-03-02 18:30:46 -0700 |
|---|---|---|
| committer | Adelyn Breedlove <[email protected]> | 2019-03-02 18:30:46 -0700 |
| commit | 6163027a715b31d87e1f8e4fde8f7f3b4db2bc42 (patch) | |
| tree | d84b6f956fd43d8a3bb2dff3a1bde9e27dcc1cc2 /lib/client.mli | |
| parent | Style improvements who dis (diff) | |
| download | disml-6163027a715b31d87e1f8e4fde8f7f3b4db2bc42.tar.xz disml-6163027a715b31d87e1f8e4fde8f7f3b4db2bc42.zip | |
Initial Lwt changes. Successfully compiles
Diffstat (limited to 'lib/client.mli')
| -rw-r--r-- | lib/client.mli | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/client.mli b/lib/client.mli index 6d7c931..a9ca914 100644 --- a/lib/client.mli +++ b/lib/client.mli @@ -1,5 +1,3 @@ -open Async
-
include module type of Dispatch
(** Type of the Client, it isn't recommended to access the fields directly. *)
@@ -31,7 +29,7 @@ val start : ?compress:bool ->
?large:int ->
string ->
- t Deferred.t
+ t Lwt.t
(** Same as {!Sharder.set_status} where [client.sharder] is passed. *)
val set_status :
@@ -41,7 +39,7 @@ val set_status : ?since:int ->
?url:string ->
t ->
- Sharder.Shard.shard list Deferred.t
+ unit Lwt.t
(** Same as {!Sharder.request_guild_members} where [client.sharder] is passed. *)
val request_guild_members :
@@ -49,10 +47,10 @@ val request_guild_members : ?query:string ->
?limit:int ->
t ->
- Sharder.Shard.shard list Deferred.t
+ unit Lwt.t
(** Same as {!Sharder.shutdown_all} where [client.sharder] is passed. *)
val shutdown_all :
?restart:bool ->
t ->
- unit list Deferred.t
+ unit Lwt.t
|