summaryrefslogtreecommitdiff
path: root/src/main/java/com/keuin/kbackupfabric/operation/abstracts/AbstractSerializedOperation.java
blob: 3168e8cd313a381db4af9e4b1826fc2714beeeb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.keuin.kbackupfabric.operation.abstracts;

public abstract class AbstractSerializedOperation {
    /**
     * Do your operation here.
     * This method is not designed to be public.
     * When this method returns, the operation must have finished.
     *
     * @return the stat code.
     */
    protected abstract boolean operate();
}