Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exhaustive state conditions for all realtime operations. #112

Merged
merged 24 commits into from
Jun 16, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
dc74c6e
Exhaustive state conditions for all realtime operations.
tcard Apr 25, 2016
51f98a0
Channel.attach when connection is INITIALIZED: queue operation.
tcard Apr 26, 2016
dc9f805
Actually, have INITIALIZED to always queue instead of failing.
tcard Apr 26, 2016
275d1e8
Channel.detach: when connection is CLOSED, channel is DETACHED.
tcard Apr 26, 2016
926039f
detach: when connection is SUSPENDED, channel is DETACHED.
tcard Apr 26, 2016
57c7f70
Unify RTN12d and RTN12e.
tcard Apr 28, 2016
2ae305d
Refine RTL6c2 and RTP16b.
tcard Apr 28, 2016
10efbda
Attach when INITIALIZED does RTL4c.
tcard Apr 28, 2016
e8c490f
https://github.com/ably/docs/pull/112#discussion_r61354799
tcard Apr 28, 2016
62c43fd
Change connect behavior when DISCONNECTED, SUSPENDED and FAILED.
tcard Apr 28, 2016
457da6b
RTL4e was duplicated.
tcard Apr 28, 2016
e7b3db0
RTN11b: don't reuse the transport.
tcard Apr 28, 2016
33b163f
Fix tables formatting and wording.
tcard Apr 28, 2016
17f6407
Fix typo.
tcard May 2, 2016
8986e48
Publish on INITIALIZED channel should queue.
tcard May 4, 2016
5d5bf7c
RTN12f: move immediately to CLOSING.
tcard May 11, 2016
5b417c7
spec: Consistent use of @null@
mattheworiordan May 31, 2016
80c669d
spec: Allow a FAILED channel to be reattached
mattheworiordan May 31, 2016
150d28b
spec: Few minor additions to state change effects on channel operations
mattheworiordan May 31, 2016
8accc74
Exhaustive conditions for attach failures.
tcard Jun 10, 2016
8620a08
Implicit attach only when INITIALIZED.
tcard Jun 10, 2016
768ebb3
spec: Simplify channel state rules with pending state vocab
mattheworiordan Jun 13, 2016
c83dc0e
spec: Return to previous channel state on failure
mattheworiordan Jun 13, 2016
74fff20
Sync state ops table with spec.
tcard Jun 14, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions app/assets/stylesheets/documentation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,14 @@ $code-block-background: #F6F6F6;
}
}

table {
border-collapse: collapse;
th, td {
border: 1px solid #eee;
padding: 5px;
}
}

dl {
@mixin definition-header {
font-family: $doc-body-font;
Expand Down
Loading