package uk.co.blatech.blaupload.util; import com.squareup.otto.Bus; /** * Simple class for sending messages between threads using the Otto library * * Created by joe on 03/08/14. */ public class EventBus { private static final Bus BUS = new Bus(); public static Bus getInstance() { return BUS; } }