Giter VIP home page Giter VIP logo

janet-command's Introduction

CommandActionService

ActionService for Janet which delegates job execution back to command action.

Getting Started

1. Define service and add it to Janet
Janet janet = new Janet.Builder().addService(new CommandActionService()).build();
2. Define command action class
@CommandAction
class CopyBitmapToFileCommand extends Command<File> {

    private final Context context;
    private final String bitmapPath;
    //
    private File newFile;

    public CopyBitmapToFileCommand(Context context, String bitmapPath) {
        this.context = context;
        this.bitmapPath = bitmapPath;
    }

    @Override protected void run(CommandCallback<File> callback) throws Throwable {
        // Pre-check arguments
        if (TextUtils.isEmpty(bitmapPath)) {
            callback.onFail(new IllegalArgumentException("Source path is empty"));
            return;
        }
        // Do the job
        String tmpBitmapPrefix = "bitmap_" + System.currentTimeMillis();
        try {
            newFile = BitmapUtil.decodeToTmp(context, bitmapPath, tmpBitmapPrefix);
            callback.onSuccess(newFile);
        } catch (IOException e) {
            callback.onFail(e);
        }
    }

    @Override protected void cancel() {
        // cleanup resources
        if (newFile != null && newFile.exists()) newFile.delete();
    }
}
  • Each action is an individual class that contains runnable logic;
  • It must be annotated with @CommandAction and must extend Command;
  • Real job is defined by overriden void run() method which is called upon action sending;
  • CommandCallback methods should be called to indicate command result;
  • Cleanup on cancelation is available via overriden void cancel().
3. Use ActionPipe to send/observe action
ActionPipe<CopyBitmapToFileCommand> actionPipe = janet.createPipe(CopyBitmapToFileCommand.class);
actionPipe
  .createObservable(new CopyBitmapToFileCommand(context, sourceBitmapPath))
  .subscribeOn(Schedulers.io())
  .subscribe(new ActionStateSubscriber<CopyBitmapToFileCommand>()
          .onSuccess(action -> System.out.println("Got new file " + action.getResult()))
          .onFail((action, throwable) -> System.err.println("Bad things happened " + throwable))
  );

Download

repositories {
    jcenter()
    maven { url "https://jitpack.io" }
}

dependencies {
    compile 'com.github.techery:janet-command:xxx'
    // explicitly depend on latest Janet for bug fixes and new features (optionally)
    compile 'com.github.techery:janet:zzz' 
}
  • janet:
  • janet-command:

License

Copyright (c) 2016 Techery

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

janet-command's People

Contributors

palevomr avatar almozavr avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.