mirror of
https://github.com/lil-org/tokenary.git
synced 2025-01-05 20:16:25 +03:00
35 lines
952 B
Swift
35 lines
952 B
Swift
//
|
|
// This source file is part of the Web3Swift.io open source project
|
|
// Copyright 2018 The Web3Swift Authors
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// StickyComputation.swift
|
|
//
|
|
// Created by Timofey Solonin on 10/05/2018
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public final class StickyComputation<ReturnType> {
|
|
|
|
private let computation: () throws -> (ReturnType)
|
|
public init(computation: @escaping () throws -> (ReturnType)) {
|
|
self.computation = computation
|
|
}
|
|
|
|
private var computationResult: ReturnType?
|
|
private var error: Swift.Error?
|
|
public func result() throws -> ReturnType {
|
|
if let computationResult = self.computationResult {
|
|
return computationResult
|
|
} else if let error = self.error {
|
|
throw error
|
|
} else {
|
|
let computationResult = try self.computation()
|
|
self.computationResult = computationResult
|
|
return computationResult
|
|
}
|
|
}
|
|
|
|
}
|