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

org.projectodd.stilts.stomp.spi.StompSession Maven / Gradle / Ivy

The newest version!
package org.projectodd.stilts.stomp.spi;

import java.util.List;

public interface StompSession {
    
    String getId();
    
    List getAttributeNames();
    Object getAttribute(String name);
    void setAttribute(String name, Object value);
    void removeAttribute(String name);
    
    void access();
    void endAccess();
}




© 2015 - 2026 Weber Informatics LLC | Privacy Policy