blob: ab1f423b9c25999b6bc99a0e6aeab53f4932b79d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2008 Remy Suen, Composent Inc., and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Remy Suen <remy.suen@gmail.com> - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.protocol.bittorrent;
/**
* The <code>IPieceProgressListener</code> is used to indicate that one of the
* pieces has just retrieved some amount of additional data from a peer.
*/
public interface IPieceProgressListener {
/**
* This method is called when additional bytes has been written for a piece.
*
* @param piece
* the piece's number
* @param index
* the position in the piece where the bytes were written to
* @param blockLength
* the amount of bytes that has been written
*/
public void blockDownloaded(int piece, int index, int blockLength);
}