Interactor Executor

Small java library for use the Interactor(use case) and Executor for running code on a Thread Pool Thread or UI Thread. Normally this library is used for implement the Clean Architecture.

License

License

GroupId

GroupId

com.github.tonilopezmr
ArtifactId

ArtifactId

interactorexecutor
Last Version

Last Version

2.0
Release Date

Release Date

Type

Type

aar
Description

Description

Interactor Executor
Small java library for use the Interactor(use case) and Executor for running code on a Thread Pool Thread or UI Thread. Normally this library is used for implement the Clean Architecture.
Project URL

Project URL

https://github.com/tonilopezmr/InteractorExecutor
Source Code Management

Source Code Management

https://github.com/tonilopezmr/InteractorExecutor

Download interactorexecutor

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.tonilopezmr/interactorexecutor/ -->
<dependency>
    <groupId>com.github.tonilopezmr</groupId>
    <artifactId>interactorexecutor</artifactId>
    <version>2.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.tonilopezmr/interactorexecutor/
implementation 'com.github.tonilopezmr:interactorexecutor:2.0'
// https://jarcasting.com/artifacts/com.github.tonilopezmr/interactorexecutor/
implementation ("com.github.tonilopezmr:interactorexecutor:2.0")
'com.github.tonilopezmr:interactorexecutor:aar:2.0'
<dependency org="com.github.tonilopezmr" name="interactorexecutor" rev="2.0">
  <artifact name="interactorexecutor" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.github.tonilopezmr', module='interactorexecutor', version='2.0')
)
libraryDependencies += "com.github.tonilopezmr" % "interactorexecutor" % "2.0"
[com.github.tonilopezmr/interactorexecutor "2.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

InteractorExecutor Build Status Maven Central Android Arsenal

InteractorExecutor is a small Java library using the Interactor(use case) and Executor for running code on a Thread Pool Thread or UI Thread. Normally this library is used for implement the Clean Architecture.

For version 2: Now the library is NOT Android, You should implement the MainThreadImp in your application.

For learn how to use this library read this awesome article and see the sample code.

Import InteractorExecutor dependency:

Grab via maven:

<dependency>
  <groupId>com.github.tonilopezmr</groupId>
  <artifactId>interactorexecutor</artifactId>
  <version>2.0</version>
</dependency>

or gradle:

compile 'com.github.tonilopezmr:interactorexecutor:2.0'

Sample Clean architecture

The code which uses this library is in the package 'com.tonilopezmr.sample.domain.interactor'.

The sample code is the same as my other library Android EasySQLite.

I use the Clean architecture with the pattern MVP, I have been motivated for the speaker pedrovgs in DroidCon 2014.

After see the MVP implementations of:

Libraries used on the sample project

If anything is wrong contact me

Follow me on Twitter Add me to Linkedin

License

Copyright 2015 Antonio López Marín <tonilopezmr.com>

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.

Versions

Version
2.0
1.0