Sha256: 3925b65cc4ed0a71c86efba457be8578491092a6df1a0397cab106b8cc781227
Contents?: true
Size: 718 Bytes
Versions: 1
Compression:
Stored size: 718 Bytes
Contents
package com.rho.timer; import java.util.List; import java.util.Map; import com.rhomobile.rhodes.api.IMethodResult; public abstract class TimerSingletonBase { public static class createTask implements Runnable { private ITimerSingleton mApiSingleton; private IMethodResult mResult; public createTask(ITimerSingleton obj, IMethodResult result) { this.mApiSingleton = obj; this.mResult = result; } @Override public void run() { try { mApiSingleton.create( mResult); } catch (Throwable ex) { mResult.set(ex); } } } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tauplatform-1.0.1 | lib/commonAPI/coreapi/ext/platform/android/generated/src/com/rho/timer/TimerSingletonBase.java |