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

com.litongjava.context.Context Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.litongjava.context;

import java.util.List;

public interface Context {

  public Context run(Class[] primarySources, String[] args);

  public Context run(Class[] primarySources, BootConfiguration tioBootConfiguration, String[] args);

  public void initAnnotation(List> scannedClasses);

  public boolean isRunning();

  public void close();

  public void restart(Class[] primarySources, String[] args);

  public int getPort();


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy