(Context context)
| 166 | } |
| 167 | |
| 168 | static void cancel(Context context) { |
| 169 | try { |
| 170 | Log.i("Cancelling " + getName()); |
| 171 | WorkManager.getInstance(context).cancelUniqueWork(getName()); |
| 172 | Log.i("Cancelled " + getName()); |
| 173 | } catch (IllegalStateException ex) { |
| 174 | Log.w(ex); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | private static String getName() { |
| 179 | return WorkerFts.class.getSimpleName(); |