bind
JobResult.bind
('a -> Job<Result<'b, 'c>>)
-> Job<Result<'a, 'c>>
-> Job<Result<'b, 'c>>Examples
Example 1
let notifyFollowers : NotifyNewPostRequest -> Job<Result<unit,exn>>newPostRequestResult |> JobResult.bind notifyFollowersLast updated