Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Elixxir dApps SDK Swift
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
iOS
Elixxir dApps SDK Swift
Merge requests
!18
Update Bindings
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Update Bindings
feature/update-bindings
into
development
Overview
3
Commits
164
Pipelines
0
Changes
2
Merged
Update Bindings
Dariusz Rybicki
requested to merge
feature/update-bindings
into
development
Jul 18, 2022
Overview
3
Commits
164
Pipelines
0
Changes
2
Update Bindings.xcframework (release
https://git.xx.network/elixxir/client/-/pipelines/125767
)
Update Bindings.xcframework (release
https://git.xx.network/elixxir/client/-/pipelines/132481
)
Update Bindings.xcframework (release
https://git.xx.network/elixxir/client/-/pipelines/133113
)
Update Bindings.xcframework (release
https://git.xx.network/elixxir/client/-/pipelines/133582
)
Update Bindings.xcframework (release
https://git.xx.network/elixxir/client/-/pipelines/133688
)
Use models instead of raw data whenever possible
User Discovery
Backup
File Transfers
Channels
Edited
Jul 29, 2022
by
Dariusz Rybicki
0
0
Merge request reports
Viewing commit
6b09d25c
Show latest version
2 files
+
27
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
6b09d25c
Add E2EPayloadSize functor
· 6b09d25c
Dariusz Rybicki
authored
Jul 25, 2022
Sources/ElixxirDAppsSDK/E2E.swift
+
5
−
2
View file @ 6b09d25c
Edit in single-file editor
Open in Web IDE
Show full file
@@ -3,6 +3,7 @@ import Bindings
public
struct
E2E
{
public
var
getId
:
E2EGetId
public
var
getReceptionId
:
E2EGetReceptionId
public
var
payloadSize
:
E2EPayloadSize
// TODO:
}
@@ -11,7 +12,8 @@ extension E2E {
public
static
func
live
(
_
bindingsE2E
:
BindingsE2e
)
->
E2E
{
E2E
(
getId
:
.
live
(
bindingsE2E
:
bindingsE2E
),
getReceptionId
:
.
live
(
bindingsE2E
:
bindingsE2E
)
getReceptionId
:
.
live
(
bindingsE2E
:
bindingsE2E
),
payloadSize
:
.
live
(
bindingsE2E
:
bindingsE2E
)
)
}
}
@@ -19,6 +21,7 @@ extension E2E {
extension
E2E
{
public
static
let
unimplemented
=
E2E
(
getId
:
.
unimplemented
,
getReceptionId
:
.
unimplemented
getReceptionId
:
.
unimplemented
,
payloadSize
:
.
unimplemented
)
}
Loading