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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
iOS
Elixxir dApps SDK Swift
Merge requests
!91
Project 'elixxir/elixxir-dapps-sdk-swift' was moved to 'mobile/ios/elixxir-dapps-sdk-swift'. Please update any links and bookmarks that may still have the old path.
Update Bindings
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update Bindings
dev/update-bindings
into
development
Overview
0
Commits
2
Pipelines
0
Changes
2
Merged
Dariusz Rybicki
requested to merge
dev/update-bindings
into
development
2 years ago
Overview
0
Commits
2
Pipelines
0
Changes
2
Expand
Update Bindings.xcframework
client@7aac8e09
go version go1.17.13 darwin/arm64
Xcode 14.0 Build version 14A309
gomobile bind target: ios,iossimulator,macos
Add
CMixGetRunningProcesses
function wrapper
0
0
Merge request reports
Viewing commit
dfff4e78
Prev
Next
Show latest version
2 files
+
28
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
dfff4e78
Add CMixGetRunningProcesses function wrapper
· dfff4e78
Dariusz Rybicki
authored
2 years ago
Sources/XXClient/CMix/Functions/CMIxGetRunningProcesses.swift
0 → 100644
+
25
−
0
Options
import
Bindings
import
XCTestDynamicOverlay
public
struct
CMixGetRunningProcesses
{
public
var
run
:
()
throws
->
[
String
]
public
func
callAsFunction
()
throws
->
[
String
]
{
try
run
()
}
}
extension
CMixGetRunningProcesses
{
public
static
func
live
(
_
bindingsCMix
:
BindingsCmix
)
->
CMixGetRunningProcesses
{
CMixGetRunningProcesses
{
let
data
=
try
bindingsCMix
.
getRunningProcesses
()
return
try
JSONDecoder
()
.
decode
([
String
]
.
self
,
from
:
data
)
}
}
}
extension
CMixGetRunningProcesses
{
public
static
let
unimplemented
=
CMixGetRunningProcesses
(
run
:
XCTUnimplemented
(
"
\(
Self
.
self
)
"
)
)
}
Loading