8000 [bindgen] remove LinkList by kneth · Pull Request #7307 · realm/realm-core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[bindgen] remove LinkList #7307

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

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
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
29 changes: 16 additions & 13 deletions bindgen/spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ mixedInfo:
type: ObjKey
unusedDataTypes:
- Mixed
- LinkList
extraCtors:
- Obj
- Geospatial
Expand Down Expand Up @@ -180,7 +179,7 @@ enums:
cppName: ClientResyncMode
values:
- Manual
- DiscardLocal
- DiscardLocal
- Recover
- RecoverOrDiscard

Expand All @@ -197,11 +196,16 @@ enums:
Double: 10
Decimal: 11
Link: 12
LinkList: 13
ObjectId: 15
TypedLink: 16
UUID: 17

AppCacheMode:
cppName: app::App::CacheMode
values:
- Enabled
- Disabled

AuthProvider:
cppName: app::AuthProvider
values:
Expand Down Expand Up @@ -369,7 +373,7 @@ records:
fields:
longitude: double
latitude: double
altitude:
altitude:
type: double
default: std::numeric_limits<double>::quiet_NaN()

Expand All @@ -386,7 +390,7 @@ records:
GeoPolygon:
fields:
points: std::vector<std::vector<GeoPoint>>

RealmConfig:
fields:
path: std::string
Expand Down Expand Up @@ -467,7 +471,7 @@ records:
type: bool
default: false
error_handler: 'Nullable<std::function<(session: SharedSyncSession, error: SyncError) off_thread -> void>>'
custom_http_headers:
custom_http_headers:
type: 'std::map<std::string, std::string>'
default: {}
client_validate_ssl:
Expand All @@ -476,15 +480,15 @@ records:
ssl_trust_certificate_path: util::Optional<std::string>
ssl_verify_callback: Nullable<SSLVerifyCallback>
client_resync_mode:
type: ClientResetMode
type: ClientResetMode
default: ClientResyncMode::Manual;
notify_before_client_reset: 'Nullable<std::function<(before_frozen: SharedRealm) off_thread -> void>>'
notify_after_client_reset: 'Nullable<std::function<(before_frozen: SharedRealm, after: ThreadSafeReference, did_recover: bool) off_thread -> void>>'
cancel_waits_on_nonfatal_error:
type: bool
default: false
proxy_config: util::Optional<SyncProxyConfig>

SyncSubscription:
cppName: sync::Subscription
fields:
Expand Down Expand Up @@ -928,7 +932,7 @@ classes:
- () const
- suffix: maybe_throw
sig: '(throw_on_error: bool) const'

create_key_path_array: '(table_name: StringData, key_paths: const std::vector<std::string>&) -> KeyPathArray'

close: ()
Expand Down Expand Up @@ -1142,7 +1146,7 @@ classes:
refresh_token: std::string
device_id: std::string
has_device_id: bool
user_profile: UserProfile
user_profile: UserProfile
identities: std::vector<UserIdentity>
custom_data: util::Optional<bson::BsonDocument>
sync_manager: SharedSyncManager
Expand All @@ -1167,7 +1171,7 @@ classes:
birthday: '() -> util::Optional<std::string>'
min_age: '() -> util::Optional<std::string>'
max_age: '() -> util::Optional<std::string>'
data: '() -> bson::BsonDocument'
data: '() -> bson::BsonDocument'

AppSubscriptionToken:
cppName: app::App::Token
Expand All @@ -1183,8 +1187,7 @@ classes:
sync_manager: SharedSyncManager
subscribers_count: count_t
staticMethods:
get_shared_app: '(config: AppConfig, sync_client_config: SyncClientConfig) -> SharedApp'
get_uncached_app: '(config: AppConfig, sync_client_config: SyncClientConfig) -> SharedApp'
get_app: '(mode: AppCacheMode, config: AppConfig, sync_client_config: SyncClientConfig) -> SharedApp'
get_cached_app: '(app_id: const std::string&) -> SharedApp'
clear_cached_apps: ()
close_all_sync_sessions: ()
Expand Down
0