removed nsSycnOutStreamListener references. No longer using it.

This commit is contained in:
valeski%netscape.com 1999-05-06 19:49:23 +00:00
Родитель e7260ede87
Коммит 1fb4ea16b1
4 изменённых файлов: 3 добавлений и 97 удалений

Просмотреть файл

@ -1,76 +0,0 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#ifndef nsIStreamListener_h___
#define nsIStreamListener_h___
#include "nsIStreamObserver.h"
#include "nsIOutputStream.h"
#include "nsIEventQueue.h"
class nsIInputStream;
#define NS_ISTREAMLISTENER_IID \
{ /* 68d9d640-ea35-11d2-931b-00104ba0fd40 */ \
0x68d9d640, \
0xea35, \
0x11d2, \
{0x93, 0x1b, 0x00, 0x10, 0x4b, 0xa0, 0xfd, 0x40} \
}
class nsIStreamListener : public nsIStreamObserver
{
public:
NS_DEFINE_STATIC_IID_ACCESSOR(NS_ISTREAMLISTENER_IID);
/**
* Notify the client that data is available in the input stream. This
* method is called whenver data is written into the input stream by the
* networking library...<BR><BR>
*
* @param pIStream The input stream containing the data. This stream can
* be either a blocking or non-blocking stream.
* @param length The amount of data that was just pushed into the stream.
* @return The return value is currently ignored.
*/
NS_IMETHOD OnDataAvailable(nsISupports* context,
nsIInputStream *aIStream,
PRUint32 aSourceOffset,
PRUint32 aLength) = 0;
};
// An asynchronous stream listener is used to ship data over to another thread specified
// by the thread's event queue. The receiver stream listener is then used to receive
// the data on the other thread.
extern nsresult
NS_NewAsyncStreamListener(nsIStreamListener* *result,
nsIEventQueue* eventQueue,
nsIStreamListener* receiver);
// A synchronous stream listener pushes data through a pipe that ends up
// in an input stream to be read by another thread.
extern nsresult
NS_NewSyncStreamListener(nsIStreamListener* *listener,
nsIInputStream* *inStream);
extern nsresult
NS_NewSyncOutStreamListener(nsIStreamListener* *listener,
nsIOutputStream* *outStream);
#endif /* nsIIStreamListener_h___ */

Просмотреть файл

@ -27,7 +27,6 @@ CPPSRCS = \
nsConnectionGroup.cpp \
nsAsyncStreamListener.cpp \
nsSyncStreamListener.cpp \
nsSyncOutStreamListener.cpp \
nsFileTransport.cpp \
nsFileTransportService.cpp \
nsSocketTransport.cpp \

Просмотреть файл

@ -33,7 +33,6 @@ CPP_OBJS = \
.\$(OBJDIR)\nsConnectionGroup.obj \
.\$(OBJDIR)\nsAsyncStreamListener.obj \
.\$(OBJDIR)\nsSyncStreamListener.obj \
.\$(OBJDIR)\nsSyncOutStreamListener.obj \
.\$(OBJDIR)\nsFileTransport.obj \
.\$(OBJDIR)\nsFileTransportService.obj \
.\$(OBJDIR)\nsSocketTransport.obj \

Просмотреть файл

@ -769,25 +769,9 @@ nsSocketTransport::OpenOutputStream(nsIOutputStream* *result)
}
if (NS_SUCCEEDED(rv) && !mWriteStream) {
nsIByteBufferInputStream* tmp = nsnull;
rv = NS_NewByteBufferInputStream(&tmp, PR_FALSE,
MAX_IO_BUFFER_SIZE);
if (NS_SUCCEEDED(rv)) {
rv = tmp->QueryInterface(kIInputStreamIID, (void **) mWriteStream);
NS_RELEASE(tmp);
if (NS_FAILED(rv)) return rv;
}
}
if (NS_SUCCEEDED(rv)) {
//NS_IF_RELEASE(mWriteStream);
//mWriteStream = nsnull;
NS_IF_RELEASE(mContext);
mContext = nsnull;
NS_IF_RELEASE(mListener);
rv = NS_NewSyncOutStreamListener(&mListener, result);
rv = NS_NewPipe(&mWriteStream,
result,
PR_FALSE, MAX_IO_BUFFER_SIZE);
}
if (NS_SUCCEEDED(rv)) {