aboutsummaryrefslogtreecommitdiff
path: root/src/client/gateway/error.rs
Commit message (Collapse)AuthorAgeFilesLines
* Resume when restarting WS sender/receiverAustin Hellyer2017-02-071-9/+6
|
* Round 1Austin Hellyer2016-12-291-1/+1
|
* Remove duplicated gateway logicAustin Hellyer2016-11-291-0/+5
|
* Add a bit more docsAustin Hellyer2016-11-261-1/+5
|
* Re-organize the client moduleAustin Hellyer2016-11-211-0/+27
Re-organize the client module, creating a `gateway` submodule, and splitting the connection into separate files in it. The connection was a conglomeration of a number of purposes, most of which are actually used elsewhere in the library and/or exposed to the user. Thus, it makes sense to separate each item in a gateway-specific module. By splitting the client module further, this is a re-organization for preliminary RPC support WRT the Client. Additionally, rename the Connection struct to a Shard. The Connection itself was not the actual connection, and was a higher-level interface to the real connection logic. A Shard is a more accurate representation of what it actually is.