WSFlush (C 函数)

int WSFlush(WSLINK link)

刷新包含在 link 中等待被发送的数据的任何缓冲区.

更多信息

  • 如果调用 WSNextPacket() 或任何 WSGet 函数,那么将自动调用 WSFlush().
  • 如果调用 WSReady(),那么需要先调用 WSFlush() 以确保任何必须输出的数据已被发送.
  • 若发生错误,则 WSFlush() 返回0;若函数成功,则返回非零值.
  • WSFlush() 失败,使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h 已对 WSFlush() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* send the expression Integrate[1/x^2,x] to a link */

void f(WSLINK lp)
{
    if(! WSPutFunction(lp, "EvaluatePacket", 1))
        { /* unable to put the function to lp */ }

    if(! WSPutFunction(lp, "ToExpression", 1))
        { /* unable to put the function to lp */ }

    if(! WSPutString(lp, "Integrate[1/x^2, x]"))
        { /* unable to put the string to lp */ }

    if(! WSEndPacket(lp))
        { /* unable to put the end of packet indicator to lp */ }

    if(! WSFlush(lp))
        { /* unable to flush the buffered data in lp */ }
}