Skip to content

Instantly share code, notes, and snippets.

@cleantutorials
Created May 26, 2020 06:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cleantutorials/0cff688eece9c20226706f08645ffdf4 to your computer and use it in GitHub Desktop.
Save cleantutorials/0cff688eece9c20226706f08645ffdf4 to your computer and use it in GitHub Desktop.
package com.cleantutorials.jconsole.mbeans;
public interface ToDoMBean {
public void storeTask(String taskName);
public String dequeueTask();
public int getTasksLeft();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment