public void InitializeMmap() { GameObject hakoniwa = GameObject.Find("Hakoniwa"); bufferParams = hakoniwa.GetComponentInChildren <IoBufferParameter>(); io_mmap = new MmapFileReader(); io_mmap.DoStart(this.filepath); this.io = io_mmap; return; }
public void Initialize() { GameObject hakoniwa = GameObject.Find("Hakoniwa"); bufferParams = hakoniwa.GetComponentInChildren <IoBufferParameter>(); /************************************* * UDP SETTINGS *************************************/ io_udp = new UdpCommServer(); io_udp.port = port; /*************************************/ io_udp.DoStart(); this.io = io_udp; return; }
public void Initialize() { GameObject hakoniwa = GameObject.Find("Hakoniwa"); bufferParams = hakoniwa.GetComponentInChildren <IoBufferParameter>(); #if VDEV_IO_MMAP io = new MmapFileReader(); io.DoStart(this.filepath, this.stime_off); #else /************************************* * UDP SETTINGS *************************************/ io = new UdpCommServer(); io.port = port; /*************************************/ io.DoStart(); #endif }
public void Initialize() { GameObject hakoniwa = GameObject.Find("Hakoniwa"); bufferParams = hakoniwa.GetComponentInChildren <IoBufferParameter>(); /************************************* * UDP SETTINGS *************************************/ io_udp = new UdpCommClient(); io_udp.host = host; io_udp.port = port; /*************************************/ io_udp.DoStart(); this.io = io_udp; Debug.Log("params=" + bufferParams); return; }
public void Start() { GameObject hakoniwa = GameObject.Find("Hakoniwa"); bufferParams = hakoniwa.GetComponentInChildren <IoBufferParameter>(); #if VDEV_IO_MMAP io = new MmapFileWriter(); io.DoStart(this.filepath, this.stime_off); #else /************************************* * UDP SETTINGS *************************************/ io = new UdpCommClient(); io.host = host; io.port = port; /*************************************/ io.DoStart(); #endif Debug.Log("params=" + bufferParams); }