-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5608ad2
commit 772be30
Showing
138 changed files
with
1,752 additions
and
1,472 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ include: package:pedantic/analysis_options.yaml | |
|
||
analyzer: | ||
errors: | ||
# todo: ignore | ||
todo: ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
dartdoc: | ||
exclude: ["core"] | ||
categories: | ||
"Basic Features": | ||
markdown: "doc/Basic.md" | ||
name: "Basic Features" | ||
"Objects": | ||
markdown: "doc/Objects.md" | ||
name: "Objects" | ||
"Files": | ||
markdown: "doc/Files.md" | ||
name: "Files" | ||
"Push": | ||
markdown: "doc/Push.md" | ||
name: "Push" | ||
"Access Manager": | ||
markdown: "doc/AccessManager.md" | ||
name: "Access Manager" | ||
"Exceptions": | ||
markdown: "doc/Exceptions.md" | ||
name: "Exceptions" | ||
"Results": | ||
markdown: "doc/Results.md" | ||
name: "Results" | ||
"Modules": | ||
name: "Modules" | ||
categoryOrder: ["Basic Features", "Objects", "Files", "Push", "Access Manager", "Exceptions", "Results"] | ||
examplePathPrefix: "./examples" | ||
showUndocumentedCategories: true |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
export 'src/core/core.dart'; | ||
|
||
export 'src/core/keyset.dart'; | ||
export 'src/core/endpoint.dart'; | ||
export 'src/core/message_type.dart'; | ||
export 'src/core/exceptions.dart'; | ||
export 'src/core/timetoken.dart'; | ||
export 'src/core/uuid.dart'; | ||
|
||
export 'src/core/crypto/crypto.dart'; | ||
export 'src/core/logging/logging.dart'; | ||
export 'src/core/net/net.dart'; | ||
export 'src/core/supervisor/supervisor.dart'; | ||
export 'src/core/parser.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/// Default cryptography module used by PubNub SDK. | ||
/// | ||
/// Uses `package:crypto` and `package:encrypt` under the hood. | ||
/// | ||
/// {@category Modules} | ||
library pubnub.crypto; | ||
|
||
export 'src/crypto/crypto.dart' show CryptoConfiguration, CryptoModule; | ||
export 'src/crypto/encryption_mode.dart' | ||
show EncryptionMode, EncryptionModeExtension; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/// Default logging module used by PubNub SDK. | ||
/// | ||
/// {@category Modules} | ||
library pubnub.logging; | ||
|
||
export 'src/logging/logging.dart' show LogRecord, StreamLogger; | ||
export 'src/core/logging/logging.dart' show Level, provideLogger, injectLogger; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
export 'src/net/net.dart'; | ||
export 'src/net/meta/meta.dart'; | ||
/// Default networking module used by PubNub SDK. | ||
/// | ||
/// Uses `package:dio` under the hood. | ||
/// | ||
/// {@category Modules} | ||
library pubnub.networking; | ||
|
||
export 'src/net/net.dart' show NetworkingModule; | ||
export 'src/net/meta/meta.dart' | ||
show ExponentialRetryPolicy, LinearRetryPolicy, RetryPolicy; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.