Skip to content

Instantly share code, notes, and snippets.

@jbcpollak
Last active December 28, 2015 02:09
Show Gist options
  • Save jbcpollak/7425558 to your computer and use it in GitHub Desktop.
Save jbcpollak/7425558 to your computer and use it in GitHub Desktop.
AbstractFutureFactory
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