Java Code Examples for com.taobao.weex.common.WXThread#secure()
The following examples show how to use
com.taobao.weex.common.WXThread#secure() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WXRecyclerView.java From ucar-weex-core with Apache License 2.0 | 4 votes |
@Override public boolean postDelayed(Runnable action, long delayMillis) { return super.postDelayed(WXThread.secure(action), delayMillis); }
Example 2
Source File: BounceRecyclerView.java From ucar-weex-core with Apache License 2.0 | 4 votes |
@Override public boolean postDelayed(Runnable action, long delayMillis) { return super.postDelayed(WXThread.secure(action), delayMillis); }
Example 3
Source File: BounceScrollerView.java From ucar-weex-core with Apache License 2.0 | 4 votes |
@Override public boolean postDelayed(Runnable action, long delayMillis) { return super.postDelayed(WXThread.secure(action), delayMillis); }
Example 4
Source File: WXRefreshView.java From ucar-weex-core with Apache License 2.0 | 4 votes |
@Override public boolean post(Runnable action) { return super.post(WXThread.secure(action)); }
Example 5
Source File: WXHorizontalScrollView.java From ucar-weex-core with Apache License 2.0 | 4 votes |
@Override public boolean postDelayed(Runnable action, long delayMillis) { return super.postDelayed(WXThread.secure(action), delayMillis); }
Example 6
Source File: WXEditText.java From ucar-weex-core with Apache License 2.0 | 4 votes |
@Override public boolean postDelayed(Runnable action, long delayMillis) { return super.postDelayed(WXThread.secure(action), delayMillis); }
Example 7
Source File: WXRecyclerView.java From weex-uikit with MIT License | 4 votes |
@Override public boolean postDelayed(Runnable action, long delayMillis) { return super.postDelayed(WXThread.secure(action), delayMillis); }
Example 8
Source File: BounceRecyclerView.java From weex-uikit with MIT License | 4 votes |
@Override public boolean postDelayed(Runnable action, long delayMillis) { return super.postDelayed(WXThread.secure(action), delayMillis); }
Example 9
Source File: BounceScrollerView.java From weex-uikit with MIT License | 4 votes |
@Override public boolean postDelayed(Runnable action, long delayMillis) { return super.postDelayed(WXThread.secure(action), delayMillis); }
Example 10
Source File: WXRefreshView.java From weex-uikit with MIT License | 4 votes |
@Override public boolean post(Runnable action) { return super.post(WXThread.secure(action)); }
Example 11
Source File: WXHorizontalScrollView.java From weex-uikit with MIT License | 4 votes |
@Override public boolean postDelayed(Runnable action, long delayMillis) { return super.postDelayed(WXThread.secure(action), delayMillis); }
Example 12
Source File: WXEditText.java From weex-uikit with MIT License | 4 votes |
@Override public boolean postDelayed(Runnable action, long delayMillis) { return super.postDelayed(WXThread.secure(action), delayMillis); }