mirror of
https://github.com/opensim/opensim.git
synced 2026-05-20 15:25:47 +08:00
* This is achieved through two new keywords "microthreaded" and "relax". example:
public microthreaded void MyFunc(...) {
...
relax;
...
}
13 lines
277 B
C#
13 lines
277 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Interfaces
|
|
{
|
|
public interface IMicrothreader
|
|
{
|
|
void Run(IEnumerable microthread);
|
|
}
|
|
}
|