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

io.ebeaninternal.server.cluster.BinaryMessageList Maven / Gradle / Ivy

There is a newer version: 15.8.1
Show newest version
package io.ebeaninternal.server.cluster;

import java.util.ArrayList;
import java.util.List;

/**
 * Holds a List of BinaryMessage's.
 */
public class BinaryMessageList {

  final List list = new ArrayList<>();

  public void add(BinaryMessage msg) {
    list.add(msg);
  }

  public List getList() {
    return list;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy