All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.obsidiandynamics.blackstrom.factor.Initable Maven / Gradle / Ivy

The newest version!
package com.obsidiandynamics.blackstrom.factor;

import com.obsidiandynamics.blackstrom.handler.*;

public interface Initable {
  void init(InitContext context);
  
  interface Nop extends Initable {
    @Override
    default void init(InitContext context) {}
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy