package main

import (
   "io"
   "log"
   "os"
)

type test struct {
   name string
}

func (a *test) Read(p []byte) (int, error) {

    var size int
   for {
       // I want to  put large data to response the read ; some data 
whatever I want ...

        size = size + 102400
       // condition  to break
       break
   }

    return size, nil
}

func main() {
   r := &test{name: "test"}
   if _, err := io.Copy(os.Stdout, r); err != nil {
       log.Fatal(err)
   }
}


How Read method get its data , I do not know where my data should be put , 
the method just return int 

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to