blob: 4f9a69d23acc55f15af92831ded936701630b141 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.v23.rpc;
import io.v.v23.verror.VException;
/**
* The interface for managing a collection of services.
*/
public interface Server {
/**
* Adds the specified name to the mount table for the object or {@link Dispatcher} served by
* this server.
*
* @param name name to be added to the mount table
* @throws VException if the name couldn't be added to the mount table
*/
void addName(String name) throws VException;
/**
* Removes the specified name from the mount table.
*
* @param name name to be removed from the mount table
*/
void removeName(String name);
/**
* Returns the current {@link ServerStatus} of the server.
*/
ServerStatus getStatus();
}