Sakaemachi Station (Hokkaido)

Sakaemachi Station (栄町駅, Sakaemachi-eki) is a metro station in Higashi-ku, Sapporo, Hokkaido, Japan. The station number is H01. It is the northern terminus of the Tōhō Line.

Sakaemachi Station

栄町駅
LocationHigashi, Sapporo, Hokkaido
Japan
Operated by Sapporo Municipal Subway
Line(s)Tōhō Line
Other information
Station codeH01
History
Opened1988

The Sapporo Community Dome is about 11 minutes' walking distance from the station.

Platforms

1  Tōhō Line for Fukuzumi
2  Tōhō Line (Terminating trains)

Adjacent stations

« Service »
Tōhō Line
Terminus - Shindō-Higashi

Surrounding area

  • Okadama Airport
  • Sapporo Community Dome
  • Japan Self-Defense Forces Okadama Garrison
  • Sakae-Higashi East Police Station
  • The Big Discount stores Express Sakaemachi store
  • ÆON Sapporo Sakaemachi store
  • Sapporo North 43 Post Office
  • North Pacific Bank, Sakaemachi branch
  • Asahikawa Shinkin Bank, Sakae-Cho branch
  • Hokkaido Bank, Sakaemachi branch
gollark: And it mutates some shared state.
gollark: As you can see, it has to explicitly manage a "waitgroup" for synchronization and whatnot.
gollark: ```go log.Println("Fetching feeds...") var feeds []*rss.Feed var wg sync.WaitGroup for _, source := range sources { wg.Add(1) src := source go func() { defer wg.Done() feed, err := rss.Fetch(src.String()) if err != nil { log.Printf("Error fetching %s: %s", src.String(), err.Error()) return } feeds = append(feeds, feed) log.Printf("Fetched %s", feed.Title) }() } wg.Wait()```So here is something which is meant to fetch a bunch of RSS feeds in parallel.
gollark: Somewhat? There doesn't seem to be a better way to do it.
gollark: Hold on, I worked on a tiny bit of Go code, I'll dredge some up as a sample.



This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.