Home | History | Annotate | Download | only in calendar

Lines Matching refs:Operation

57      * Data class which holds into info of the queued operation
59 public static class Operation {
72 * One of the EVENT_ARG_ constants in the class describing the operation
83 case Operation.EVENT_ARG_QUERY:
85 case Operation.EVENT_ARG_INSERT:
87 case Operation.EVENT_ARG_UPDATE:
89 case Operation.EVENT_ARG_DELETE:
91 case Operation.EVENT_ARG_BATCH:
101 builder.append("Operation [op=");
124 * Gets the last delayed operation. It is typically used for canceling.
126 * @return Operation object which contains of the last cancelable operation
128 public final Operation getLastCancelableOperation() {
133 * Attempts to cancel operation that has not already started. Note that
134 * there is no guarantee that the operation will be canceled. They still may
138 * @param token The token representing the operation to be canceled. If
172 info.op = Operation.EVENT_ARG_QUERY;
188 * This method begins an asynchronous insert. When the insert operation is
192 * the insert operation.
194 * @param uri the Uri passed to the insert operation.
196 * operation.
197 * @param delayMillis delay in executing the operation. This operation will
198 * execute before the delayed time when another operation is
204 info.op = Operation.EVENT_ARG_INSERT;
218 * This method begins an asynchronous update. When the update operation is
222 * the update operation.
224 * @param uri the Uri passed to the update operation.
225 * @param values the ContentValues parameter passed to the update operation.
233 * @param delayMillis delay in executing the operation. This operation will
234 * execute before the delayed time when another operation is
240 info.op = Operation.EVENT_ARG_UPDATE;
256 * This method begins an asynchronous delete. When the delete operation is
260 * the delete operation.
262 * @param uri the Uri passed to the delete operation.
270 * @param delayMillis delay in executing the operation. This operation will
271 * execute before the delayed time when another operation is
277 info.op = Operation.EVENT_ARG_DELETE;
293 * the operation is done {@link #onBatchComplete} is called.
296 * the delete operation.
301 * @param delayMillis delay in executing the operation. This operation will
302 * execute before the delayed time when another operation is
308 info.op = Operation.EVENT_ARG_BATCH;
342 * @param uri the uri returned from the insert operation.
357 * @param result the result returned from the update operation
372 * @param result the result returned from the delete operation
411 case Operation.EVENT_ARG_QUERY:
415 case Operation.EVENT_ARG_INSERT:
419 case Operation.EVENT_ARG_UPDATE:
423 case Operation.EVENT_ARG_DELETE:
427 case Operation.EVENT_ARG_BATCH: