File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ dependencies: [
5151
5252You can compile IDL sources for Swift 3 with the following command:
5353
54- thrift --gen swift_3 thrift_file
54+ thrift --gen swift thrift_file
5555
5656## Client Example
5757``` swift
@@ -90,10 +90,11 @@ func write(_ val: String) throws
9090#### Generator Flags
9191| Flag | Description |
9292| ------------- | :-------------:|
93- | async_clients | Generate clients which invoke asynchronously via block syntax.Asynchronous classes are appended with ` _Async ` |
93+ | async_clients | Generate clients which invoke asynchronously via block syntax. Asynchronous classes are appended with ` _Async ` |
9494| no_strict* | Generates non-strict structs |
9595| debug_descriptions | Allow use of debugDescription so the app can add description via a cateogory/extension |
9696| log_unexpected | Log every time an unexpected field ID or type is encountered. |
97+ | safe_enums | Generate enum types with an unknown case to handle unspecified values rather than throw a serialization error |
9798
9899
99100
You can’t perform that action at this time.
0 commit comments