~motu-torrent/azureus/upstream-stable

« back to all changes in this revision

Viewing changes to com/aelitis/azureus/core/speedmanager/impl/v2/SMConfigurationAdapter.java

  • Committer: John Dong
  • Date: 2007-10-22 04:54:13 UTC
  • Revision ID: john.dong@gmail.com-20071022045413-3ovb11u82rrcokxx
Commit 3.0.3.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package com.aelitis.azureus.core.speedmanager.impl.v2;
 
2
 
 
3
import com.aelitis.azureus.core.speedmanager.SpeedManagerLimitEstimate;
 
4
 
 
5
/**
 
6
 * Created on Jul 30, 2007
 
7
 * Created by Alan Snyder
 
8
 * Copyright (C) 2007 Aelitis, All Rights Reserved.
 
9
 * <p/>
 
10
 * This program is free software; you can redistribute it and/or
 
11
 * modify it under the terms of the GNU General Public License
 
12
 * as published by the Free Software Foundation; either version 2
 
13
 * of the License, or (at your option) any later version.
 
14
 * This program is distributed in the hope that it will be useful,
 
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
17
 * GNU General Public License for more details.
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program; if not, write to the Free Software
 
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
21
 * <p/>
 
22
 * AELITIS, SAS au capital de 63.529,40 euros
 
23
 * 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France.
 
24
 */
 
25
 
 
26
public interface SMConfigurationAdapter
 
27
{
 
28
 
 
29
 
 
30
    public SpeedManagerLimitEstimate getUploadLimit();
 
31
    public SpeedManagerLimitEstimate getDownloadLimit();
 
32
 
 
33
 
 
34
    public void setUploadLimit(SpeedManagerLimitEstimate est);
 
35
    public void setDownloadLimit(SpeedManagerLimitEstimate est);
 
36
    
 
37
 
 
38
}