Sha256: a976939b26bddb24319fa372688820f74de0995418c1a93b1d6116ea85cf0744
Contents?: true
Size: 488 Bytes
Versions: 17
Compression:
Stored size: 488 Bytes
Contents
class AsyncWrapper def initialize @native = Java::com.droiuby.client.core.async.AsyncWrapper.new(_execution_bundle) end def native @native end def before(&block) @native.setPre_execute(block) self end def perform(&block) @native.setBackground_task(block) self end def done(&block) @native.setPost_execute(block) self end def execute @native.execute(nil, nil, nil) self end def start execute end end
Version data entries
17 entries across 17 versions & 1 rubygems