我建立了这个基本的客户端,以适应asyncore。
import asyncore, socket
class TestClient(asyncore.dispatcher):
def __init__(self, host, port):
asyncore.dispatcher.__init__(self)
self.create_socket(socket.AF_INET, socket.SOCK_STREAM)
self.connect((host, port))
self.buffer = "madonna"
def handle_connect(self):
pass
def handle_close(self):
print "Close"
self.close()
def handle_read(self):
print self.recv(8192)
def writable(self):
print "Calling writable"
return (len(self.buffer) > 0)
def handle_write(self):
print "Write"
sent = self.send(self.buffer)
self.buffer = self.buffer[sent:]
client = TestClient("127.0.0.1", 7899)
asyncore.loop()
我想我做的不对。我可以连接到服务器,但它不发送任何数据。因为buffer
不为空,所以不应该调用Writable来检查缓冲区,如果不是空的,请调用handle_write
?
除__init__
方法外,不会调用任何内容。
答案 0 :(得分:2)
你应该重新缩进你的方法:)