Re: [Twisted-Python] how to design protocol.

2008-12-01 Thread Jean-Paul Calderone
On Mon, 1 Dec 2008 15:19:47 +0200, Aydın ŞEN <[EMAIL PROTECTED]> wrote: Let me explain my problem.. I am building an uploader application using twisted. I am using "Protocol" in both side. What is the best way to seperate data? When i try to call "self.transport.write(data)" it doesnt send data

[Twisted-Python] how to design protocol.

2008-12-01 Thread Aydın ŞEN
Let me explain my problem.. I am building an uploader application using twisted. I am using "Protocol" in both side. What is the best way to seperate data? When i try to call "self.transport.write(data)" it doesnt send data immediately, it is sending with some other datas whic i send them later. W