Last active
December 28, 2015 02:09
-
-
Save jbcpollak/7425558 to your computer and use it in GitHub Desktop.
AbstractFutureFactory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.assuredlabor.services.concurrent; | |
import lombok.Setter; | |
import scala.concurrent.ExecutionContext; | |
@Setter | |
public abstract class AbstractFutureFactory<T> implements FutureFactory<T> { | |
protected ExecutionContext executionContext; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment